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.
関数Say、Function_1(arg1、agr2、.... argn)から引数を抽出する必要があります。
角かっこなしで引数だけを取り除くことは可能ですか?
\([\w,]*\)式を使ってみました
\([\w,]*\)
一致を「キャッチ」したい場合は、それらの周りに中かっこを付ける必要があります。
\(([\w,]*)\)
arg1,arg2このようにして、ですべてを見つけることができます$1。
arg1,arg2
$1
この正規表現(?<=[\w]*\()[\w,]*(?=\))を使用して目的を解決します
(?<=[\w]*\()[\w,]*(?=\))