Unauthorized Posted February 18, 2007 Posted February 18, 2007 Here's my script. #Include<File.au3> $sCount=_FileCountLines("ports.txt") For $x=1 To $sCount $sSplit=StringSplit(FileReadLine("ports.txt",$x),":") If $sSplit[2]=$x=0 Then FileWrite("hax.txt",$x&" "&"OPEN"&@CRLF) Next Now when one is "OPEN" then it keeps writing that every port is open till the end. Help is appreciated.
Shevilie Posted February 18, 2007 Posted February 18, 2007 What does ports.txt contain Start here if you are new Valuater's AutoIT 1-2-3Looking for an UDF - Look hereDo you need to do it twice - Autoit
nitekram Posted February 18, 2007 Posted February 18, 2007 (edited) Here's my script. #Include<File.au3> $sCount=_FileCountLines("ports.txt") For $x=1 To $sCount $sSplit=StringSplit(FileReadLine("ports.txt",$x),":") If $sSplit[2]=$x=0 Then FileWrite("hax.txt",$x&" "&"OPEN"&@CRLF) Next Now when one is "OPEN" then it keeps writing that every port is open till the end. Help is appreciated.Have you tried following the example in the help file : FileReadLine() EDIT - also this does not look right - $sSplit[2]=$x=0 - maybe $split[2] = 0, but that is saying if the line only contains 0 second subscritp = 0 then do the following, I guess you will need to explain more of what you are trying to do with that condition - explain in words not code. Edited February 18, 2007 by nitekram 2¢ All by me:"Sometimes you have to go back to where you started, to get to where you want to go." "Everybody catches up with everyone, eventually" "As you teach others, you are really teaching yourself." From my dad "Do not worry about yesterday, as the only thing that you can control is tomorrow." WIKI | Tabs; | Arrays; | Strings | Wiki Arrays | How to ask a Question | Forum Search | FAQ | Tutorials | Original FAQ | ONLINE HELP | UDF's Wiki | AutoIt PDF AutoIt Snippets | Multple Guis | Interrupting a running function | Another Send StringRegExp | StringRegExp Help | RegEXTester | REG TUTOR | Reg TUTOT 2 AutoItSetOption | Macros | AutoIt Snippets | Wrapper | Autoit Docs SCITE | SciteJump | BB | MyTopics | Programming | UDFs | AutoIt 123 | UDFs Form | UDF Learning to script | Tutorials | Documentation | IE.AU3 | Games? | FreeSoftware | Path_Online | Core Language Programming Tips Excel Changes ControlHover.UDF GDI_Plus Draw_On_Screen GDI Basics GDI_More_Basics GDI Rotate GDI Graph GDI CheckExistingItems GDI Trajectory Replace $ghGDIPDll with $__g_hGDIPDll DLL 101? Array via Object GDI Swimlane GDI Plus French 101 Site GDI Examples UEZ GDI Basic Clock GDI Detection Ternary operator
testingtest Posted February 18, 2007 Posted February 18, 2007 What does ports.txt containi think it contains ports
Shevilie Posted February 18, 2007 Posted February 18, 2007 i think it contains ports Noway Ninja - But how Start here if you are new Valuater's AutoIT 1-2-3Looking for an UDF - Look hereDo you need to do it twice - Autoit
testingtest Posted February 18, 2007 Posted February 18, 2007 Noway Ninja - But how i know i was stumped as well. i think he wants to open a text file read it and then write it in his other text file which doesn't make much sense
nitekram Posted February 18, 2007 Posted February 18, 2007 (edited) i know i was stumped as well. i think he wants to open a text file read it and then write it in his other text file which doesn't make much senseBased on the code I got this to work - only write the ports that have 0 as the second subscripts to the file hax.txt. I would still open the file and close the file ports.txt. #Include<File.au3> $sCount=_FileCountLines("ports.txt") For $x=1 To $sCount $sSplit=StringSplit(FileReadLine("ports.txt",$x),":") If $sSplit[2]=0 Then FileWrite("hax.txt",$x&" "&"OPEN"&@CRLF) Next edit - i used the following txt example 100:0 200:1 300:1 400:0 Edited February 18, 2007 by nitekram 2¢ All by me:"Sometimes you have to go back to where you started, to get to where you want to go." "Everybody catches up with everyone, eventually" "As you teach others, you are really teaching yourself." From my dad "Do not worry about yesterday, as the only thing that you can control is tomorrow." WIKI | Tabs; | Arrays; | Strings | Wiki Arrays | How to ask a Question | Forum Search | FAQ | Tutorials | Original FAQ | ONLINE HELP | UDF's Wiki | AutoIt PDF AutoIt Snippets | Multple Guis | Interrupting a running function | Another Send StringRegExp | StringRegExp Help | RegEXTester | REG TUTOR | Reg TUTOT 2 AutoItSetOption | Macros | AutoIt Snippets | Wrapper | Autoit Docs SCITE | SciteJump | BB | MyTopics | Programming | UDFs | AutoIt 123 | UDFs Form | UDF Learning to script | Tutorials | Documentation | IE.AU3 | Games? | FreeSoftware | Path_Online | Core Language Programming Tips Excel Changes ControlHover.UDF GDI_Plus Draw_On_Screen GDI Basics GDI_More_Basics GDI Rotate GDI Graph GDI CheckExistingItems GDI Trajectory Replace $ghGDIPDll with $__g_hGDIPDll DLL 101? Array via Object GDI Swimlane GDI Plus French 101 Site GDI Examples UEZ GDI Basic Clock GDI Detection Ternary operator
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