嵌套正则写法,该怎么解决
程序员文章站
2024-01-25 14:44:52
...
嵌套正则写法
上面是网上找到的嵌套正则写法,把string改成:
$string = 'some textc d e more text';
改成这样后,正则规则我换不过来了,亲大虾帮忙改一下。
最好能做到 个数不确定的嵌套匹配
------解决方案--------------------
- PHP code
$string = "some text (a(b(c)d)e) more text"; if(preg_match("/\((?>[^()]+|(?R))*\)/",$string,$matches)) { echo ""; print_r($matches); echo ""; }
上面是网上找到的嵌套正则写法,把string改成:
$string = 'some text
改成这样后,正则规则我换不过来了,亲大虾帮忙改一下。
最好能做到
------解决方案--------------------
- PHP code
ab e more text';preg_match("/c d(?>\w+|(?R))*/",$string,$matches) && print_r($matches); 相关文章
相关视频
上一篇: 第4章 数学运算
下一篇: 使用sockets从新闻组中获取文章三