I have a target string which looks like this:
"foo (foo, foofoo), bar (foobar), foo, bar (barbar, foo), bar, foo"
and I want:
["foo (foo, foofoo)", "bar (foobar)", "foo", "bar (barbar, foo)", "bar", "foo"]
by splitting the target at ", "
only outside the parenthesis. What is the regex to match the commas outside the parenthesis? In my case, nested parenthesis do not appear and I don't have to consider them.
I personally use Python but any language example is fine.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…