Takes a string and prefixes all linefeed characters ( Chr(10) ) with a carriage return character ( Chr(13) ).
StringAddCR ( "string" )
| string | The string to convert. |
Local $old = "Notepad" & @LF & "expects" & @LF & "CRLF text."
Local $new = StringAddCR($old)