标签: regex
我爱this tool,但正则表达式仍然如此神秘:
捕获第一个空格:
( )
捕捉第一个逗号:
(,)
如何捕获所有出现的空格和逗号?
以下是一个示例字符串:
"1 2,3 4,5 6,7"
答案 0 :(得分:4)
您可以使用Character Class执行此操作。
([ ,]+)
<强>解释强>:
( # group and capture to \1: [ ,]+ # any character of: ' ', ',' (1 or more times) ) # end of \1
Live Demo