标签: regex
我想写一个正则表达式来查找匹配以下模式的所有单词:
示例:
most_popular(z,y) most_popular most_popular () most_popular(z,x)
应该只选择:
most_popular(z,y) most_popular(z,x)
答案 0 :(得分:1)
以“most_popular”为关键词。怎么样:
most_popular\(.*?\)
这将返回你的关键词加上括号和里面的所有内容。