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.
有没有更好的方法在正则表达式的函数字符串中查找。
例如...如果字符串包含类似count("alerts")之类的函数表达式,则正则表达式应返回 [0] -> "count" 和 -> [1] 中的参数
看起来不是一个好主意,但我是谁来判断。它应该与具有任何类型参数的函数一起使用。只有一个参数。没有想到任何边缘情况。
\w+\(("?\w+"?)\)