如何匹配PCRE中的所有组和子组
IP 或其他字符串,例如“11.22.33.44”或“aa.bb.cc.dd”。基本上,我认为这很容易, (([\d\w]+)+\.)+[\d\w]+
但问题是这些子匹配位于哪个组。与 ip 不同,某些字符串由很多单词组成+
在 PCRE 中分开,我不知道如何提取所有单词 - “aa bb cc dd ...”
a ip or other string, like "11.22.33.44" or "aa.bb.cc.dd". basically, I think it is very easy, (([\d\w]+)+\.)+[\d\w]+
but the problem is which group these submatches are in. not like ip, some string is consist of lots of words+separate
in pcre, I don't know how to extract it all words -- "aa bb cc dd ..."
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要执行类似
(\w+)\.(\w+)\.(\w+)\.(\w+)
的操作,显然,只需 perl6 和 .net 正则表达式可以提取子组
注意:<代码>\w =><代码>[a-zA-Z0-9_]
You need to do like
(\w+)\.(\w+)\.(\w+)\.(\w+)
Apparantly, Only perl6 and .net regex can extract subgroups
Note:
\w
=>[a-zA-Z0-9_]