BryonR Posted August 15, 2008 Posted August 15, 2008 (edited) I have a text file that is dynamic and can be anywhere from 1 to 4 lines of information (numbers). I'm trying to create a script that will look at those lines and populate each line as a seprate variable. However I'm at a loss on the second part. Is there away to have autoit define the next variable if next line exists? Thanks! Bryon Edited August 15, 2008 by BryonR
BryonR Posted August 15, 2008 Author Posted August 15, 2008 _FileReadToArray() Thank you! It morphed into the following code. #include <IE.au3> #include <file.au3> $PACScallnumbers = "c:\test\pagernumbers.txt" $message = "please call department" Dim $aRecords If Not _FileReadToArray($PACScallnumbers,$aRecords) Then MsgBox(4096,"Error", " Error reading log to Array error:" & @error) Exit EndIf For $x = 1 to $aRecords[0] $website = "https://www.arch.com/cgi-bin/wwwpage.exe?PIN="&$aRecords[$x]&"&MSSG="&$message&"&Q1=0" $oIE = _IECreate ($website, 0, 0, 1, 0) Next
karliky Posted August 15, 2008 Posted August 15, 2008 and how to do this if you have a string separated by spaces? like: $string = "hey my name is carlos" msg(1,"What's your name",$string[5])
Paulie Posted August 15, 2008 Posted August 15, 2008 and how to do this if you have a string separated by spaces? like: $string = "hey my name is carlos" msgbox(1,"What's your name",$string[5])StringSplit() $string = "hey my name is carlos" $String = StringSplit($String, " ") msgbox(0,"What's your name",$string[5])
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