I can usually figure out REGEX_REPLACE syntax, but this one has me stumped 😞
I have these values in the field:
<a href="/blah/test">Test 123
<a href="/blah/more text">Description goes here
<a href="/blah/value 1">Value 1, <a href="/blah/Value X">Value No 2
I need to remove the A tag HTML and keep the rest, so make it:
Test 123
Description goes here
Value 1, Value No 2
I want to do this in a REGEX_REPLACE if possible, but I can't get it to recognise the < and the >
Solved! Go to Solution.
<.*?>
you should be able to replace this with '' and get rid of the tags.
cheers,
mark
Perfect 🙂
Thanks mate, I was coming back to post what I'd finally figured out would work, but your solution is a lot more elegant and understandable 🙂