How to strip HTML tags from a string?
You can get this result with the following regular expression
<cfsavecontent variable="str">
<html>
<body>
This is the text you want
</body>
</html>
</cfsavecontent>
<cfset textstr = REReplace(str,'<[^>]*>','','all')>
<cfoutput>
#textstr#
</cfoutput>
9125 viewed | 5 opinion(s) | del.icio.us | Digg it | Tjarko @ 02/11/02 18:23 cet


