function StringRemoveHTMLTags(baseStr as String) as String
r = createObject("roRegex", "<[^<]+?>", "i")
return r.replaceAll(baseStr, "")
end function
"destruk" wrote:
One issue with doing that is that it will match anything between less than and greater than signs - not necessarily a valid html tag.
<gasp>
But for the cheap man's solution it works.