Kyl*_*cey 0 ruby regex
我会简短的
"Test(this)thingplease(for)me"[/\(.*\)/]
火柴
测试(这)thingplease(for) me
我想要
测试(这) thingplease (for) me
Kir*_*huk 5
使用非贪婪的正则表达式,即:\(.*?\)或:\([^()]*\)
\(.*?\)
\([^()]*\)
它将匹配:
(this)
(for)
归档时间:
14 年,4 月 前
查看次数:
53 次
最近记录:
13 年,11 月 前