I have a piece of multiline text. I'm trying to replace the line breaks with:
<cfset address = Replace(address, "#chr(13)##chr(10)#", "<br>" , "all"
>
<cfoutput>#address#</cfoutput>
But it doesn't seem to find the line breaks. ParagaphFormat doesn't work either, and puts an ugly large amount of extra space below the text.
Anyone have any suggestions?
<cfset address = Replace(address, "#chr(13)##chr(10)#", "<br>" , "all"
<cfoutput>#address#</cfoutput>
But it doesn't seem to find the line breaks. ParagaphFormat doesn't work either, and puts an ugly large amount of extra space below the text.
Anyone have any suggestions?