So I want to map something like this -
foo <TEST>something something </TEST> blah
I want the regex to get me foo, but not get me. I was thinking about using regex, something like this
(\w\s)<
with a negative look, but I'm not sure how to use this in this case.
OTHER CASE -
something something foo <TEST> something something </TEST> blah
source
share