Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

regex - How to match everything up to the second occurrence of a character?

So my string looks like this:

Basic information, advanced information, super information, no information

I would like to capture everything up to second comma so I get:

Basic information, advanced information

What would be the regex for that?

I tried: (.*,.*), but I get

Basic information, advanced information, super information,
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This will capture up to but not including the second comma:

[^,]*,[^,]*

English translation:

  • [^,]* = as many non-comma characters as possible

  • , = a comma

  • [^,]* = as many non-comma characters as possible

[...] is a character class. [abc] means "a or b or c", and [^abc] means anything but a or b or c.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...