Hi,
For me both database as well as coldfusion worked fine. You
may also please try with small example.
Method 1:
***********
At database side
select
replace(columnname,chr(13)||chr(10),' ') as columnname
from <tablename>
Method 2: Coldfusion
***********************
<cfset pageContent = reReplace(pageContent,
chr(10)&chr(13),"", "all" )>
I noticed that the regular expression functions in CF support
the newline character \n Chr(10), carriage return \r Chr(13), and
tab \t Chr(9).
<cfsavecontent variable="data">
here is my
break
</cfsavecontent>
<cfoutput>#ReReplace(data, "\n", "<br />",
"ALL")#</cfoutput>
Method 3: Coldfusion.
*************************
Please go through the below article. Example is mentioned
http://livedocs.macromedia.com/coldfusion/6/CFML_Reference/functions-pt248.htm
Hope this helps. Please try it out.
Satheesh.