I have a text "....<a></a><Line....." from which I need to remove the characters <a></a>. How can I achieve this?
Discussion posts and replies are publicly visible
You can use the regex plugin, or the substitute function.
Use These:
substitute()
"<a></a>"
"<a></a>"
regexreplace()
<a ...>...</a>