scriptkitty 1 Posted March 26, 2004 This code will fix those pesky Unix and Mac files to be readable, and clean up badly written files. $x="bob"&@cr&"sam"&@lf&"test"&@crlf&"judge" $y=makedos($x) MsgBox(1,StringLen($x),$x) MsgBox(1,"from func "&StringLen($y),$y); you can see the length differance. Func makedos($x) $x=StringReplace(StringReplace(StringReplace(StringReplace($x,@LF,@CRLF),@CR&@CR ,@CR),@CR,@CRLF),@LF&@LF ,@LF) Return $x EndFunc AutoIt3, the MACGYVER Pocket Knife for computers. Share this post Link to post Share on other sites