正则表达式模式解释
我对正则表达式相当陌生,最近我偶然发现了 perl 脚本中的正则表达式,但我无法弄清楚:
$groups= qr/\(([^()]+|(??{$groups}))*\)/;
任何帮助将不胜感激!
I am fairly new to regexes and I stubled upon a regex in perl script recently which I couldn't figure out:
$groups= qr/\(([^()]+|(??{$groups}))*\)/;
Any help would be appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,如果你扩展它:
你会得到一个优雅的递归方法来找到平衡的括号:)
Well if you expand it :
You get an elegant recursive approach to find balanced parentheses :)
YAPE::Regex::Explain 模块可以告诉您什么正则表达式正在做:
您可以将该单行代码转换为您的个人资料中的别名:
之后,您不必记住所有这些:
The YAPE::Regex::Explain module can tell you what a regex is doing:
You can turn that one-liner into an alias in your profile:
After that, you don't have to remember all that: