Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このようなcsvを解析する必要があります-
[{a,b,c},{d,e,f},{g,h,i}]
() の間のデータが必要であり、それを再度解析して実際の値を取得します。
(a,b,c) | を取得できます。(d,e,f) など この正規表現を使用 -{[^}]*?}
{[^}]*?}
グループとして a,b,c と d,e,f だけを取得するにはどうすればよいですか?
このように使用するlook-aheadとlook-behind、グループ内の型の値 のみが取得されますregex(?<={)[^}]*?(?=})a,b,c
look-ahead
look-behind
regex
(?<={)[^}]*?(?=})
a,b,c