> I do need to say that the whitespace isn't viewable on
the browser, but in the code view I see it.
Yes, I understand. I tried your expression and it does not
add any extra whitespace for me. If you run these lines, what
results do you get?
<cfsavecontent variable="getevents.calevent_content">
This is plain text <br class="clear-both"> with some
html <h4>thrown in</h4> from
time to literal time ..<p class="time
stamp-date">08/30/2008 12:18:17 PM</p>
</cfsavecontent>
<!--- trim the value _before_ the regex --->
<cfset VARIABLES.stripped_content =
REReplaceNoCase(Trim(getevents.calevent_content),"<[^>]*>","","ALL")
>
<cfoutput>
length = #len(VARIABLES.stripped_content)#<br>
<pre>|#VARIABLES.stripped_content#|</pre><br>
left(97) = #left(VARIABLES.stripped_content, 97)#
</cfoutput>