scriptkitty Posted March 26, 2004 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.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now