JerryB Posted February 23, 2011 Posted February 23, 2011 i have a .au3 program which reads a text file & writes a new text file i need to select only records from file a lines which have a value in column 11 & 12 to write to file b canot find how to equate a variable with a specific column in the input line
PsaltyDS Posted February 23, 2011 Posted February 23, 2011 Something like this: If StringMid($sLine, 11, 2) == "ab" Then FileWriteLine($sFileB, $sLine) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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