Hi,
I've been googling & trying to get this myself but can't quite get it...
QUESTION: What regular expression could be used to select text BETWEEN (but not including) the delimiter text. So as an example:
Start Marker=ABC
Stop Marker=XYZ
---input---
This is the first line
And ABCfirst matched hereXYZ
and then
again ABCsecond matchXYZ
asdf
------------
---expected matches-----
[1] first matched here
[2] second match
------------------------
Thanks