I am looking for a quick way to parse HTML tags out of a ColdFusion string. We are pulling in an RSS feed, that could potentially have anything in it. We are then doing some man
I use this:
REReplaceNoCase(text, "<[^[:space:]][^>]*>", "", "ALL");
99% of the cases it works fine.