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.
我需要从函数中提取参数说,Function_1(arg1,agr2,....argn)。
是否可以在不带括号的情况下单独剥离参数。
我尝试使用\([\w,]*\)表达式
\([\w,]*\)
如果你想“抓住”比赛,你需要在他们周围放大括号:
\(([\w,]*)\)
这样,您将arg1,arg2在$1.
arg1,arg2
$1
使用这个正则表达式(?<=[\w]*\()[\w,]*(?=\))来解决目的
(?<=[\w]*\()[\w,]*(?=\))