August 2003
Intermediate to advanced
1140 pages
68h 45m
English
StripCR
StripCR(string)Returns string with all carriage returns
removed. Example:
<cfset MyString="This is a paragraph of text with carriage returns hardcoded. #Chr(10)##Chr(13)#As you can see, this is a new line. #Chr(10)##Chr(13)#This is a new line too."> <cfoutput> <b>Original String with Carriage Returns:</b><br> <pre> #MyString# </pre> <p> <b>String with Carriage Returns Removed:</b><br> <pre> #StripCR(MyString)# </pre> </cfoutput>