正则表达式-组中第一个逗号分隔字符串

时间:2019-03-18 11:20:05

标签: regex regex-group

我有一个逗号分隔的字符串。

first,second,third,fourth

我只想使用 Regex 用如下第一个逗号将其分隔开,这应该导致出现 Groups

Group 1 - first
Group 2 - second,third,fourth

我尝试了

  

^ \ s *(。+)\ s *,\ s *(。+)\ s *

并低于结果。

enter image description here

看看https://regexr.com/4ae53

1 个答案:

答案 0 :(得分:0)

尝试一下:

^([^,]+),(.*)

结果:

Group 1.    0-5     first
Group 2.    6-25    second,third,fourth

Demo