help removing encoded html from string
Hello,
I am trying to remove all html from a user input string.
something like this:
<cfset string ="sample text <a>">
I have tried:
Replace(string , "<[^>]*>", "", "ALL")
Replace(string , "<br &##x2f;>>", "", "ALL")
Neither remove the html, can anyone help?
