匹配“Wibble A、B、C2、D”使用 PERL 正则表达式
... Foo、Bar、Wibble A、B、C2、N、J、Baz、Qux、更多、更多,...
... Bar、Qux、Wibble D、E、J、N6、O、 Foo、Foo、更多、更多,...等等
如何使用 PERL 兼容的正则表达式匹配这些字符串的突出显示部分?
它以单词“Wibble”开始,并以一个或两个用逗号分隔的字符组件继续,直到下一个单词。
... Foo, Bar, Wibble A, B, C2, N, J, Baz, Qux, More, More, ...
... Bar, Qux, Wibble D, E, J, N6, O, Foo, Foo, More, More, ... and so on
How do I match highlighted part of these strings using PERL-compatible regular expressions?
It starts with a word "Wibble" and continues with one or two character components separated by a comma until next word.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
据我所知,这可能对你有用:
From what I can tell, this may work for you:
我会尝试:
I would try:
/Wibble((?:\s+[A-Z0-9]{1,2},)*)/
检查
$1
。当然,当您说大写,然后在示例中包含数字时,必须做出一些例外。
/Wibble((?:\s+[A-Z0-9]{1,2},)*)/
check
$1
.of course, when you say uppercase and then have numbers in your example, some exceptions have to be made.
完全不严肃的答案:
/(Wibble A, B, C2, N, J,)/
not-at-all-serious answer:
/(Wibble A, B, C2, N, J,)/