I have a simple string:
data1:abc,123,xyz,data2:hello,goodbye
I need regex to return a match collection of:
abc
123
xyz
In the past I’d do it with a regular expression:
data1:(.*)data2:
and then split the output of that on the comma.
Is there a way to do this as one regular expression and no external code?
Try this
output: