嵌套正则写法,该怎么解决
嵌套正则写法 PHP code复制 $string = "some text (a(b(c)d)e) more text"; if(preg_match("/\((?>[^()]+|(?R))*\)/",$string,$matche...
嵌套正则写法 PHP code复制 $string = "some text (a(b(c)d)e) more text"; if(preg_match("/\((?>[^()]+|(?R))*\)/",$string,$matche...