刪除字符串的所有回車符 ( Chr(13) ).
StringStripCR ( "字符串" )
Local $result = StringStripCR("I am a string" & Chr(13) & Chr(10)) MsgBox(0, "刪除回車符后的字符:", $result)