正则表达式匹配数字 x1, x2, ..., xN
该字符串的格式如下:
“一些文本 1234, 45, 3423, 123 一些 文本 11, 12"
是否可以编写返回两个匹配项的正则表达式:
1234、45、3423、123
11、12
我写这个
[0-9]+[\s][,]?[\s]
显然它用逗号匹配每个数字,所以我得到 6 个匹配
The string is in the following format:
"some text 1234, 45, 3423, 123 some
text 11, 12"
Is it possible to write regex which returns two matches:
1234, 45, 3423, 123
11, 12
I write this one
[0-9]+[\s][,]?[\s]
and obviously it matches each number with a comma, so i get 6 matches
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下正则表达式
You can use the following regular expression