<cfscript>
function
StripHTML
(
strString
)
{
return
REReplaceNoCase
(
strString,
"<[^>]*>"
,
""
,
"ALL"
)
;
}
</cfscript>