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.
,(?![^(]*\))
You can use this to split.See demo.This holds true as u said there are no nested ()
.
https://regex101.com/r/wV5bD0/1
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With