Jump to content

Fix Those Non Dos Returns


scriptkitty
 Share

Recommended Posts

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.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...