kemo1987 Posted November 11, 2011 Posted November 11, 2011 Helloi have a text file with text like that:122.33..23.243 user: fritz pass: 102122.73..213.23 user: 102 pass: 102i want put ip , user and pass in 3 arraysalso i want keep file with no changeip array 122.33..23.243122.73..213.23user arrayfritz102pass array102102Thanks in advance
water Posted November 11, 2011 Posted November 11, 2011 Welcome to Autoit and the forum! I would suggest to use a two-dimensional array (like an Excel sheet: 3 colums per row holding IP, user, password). If the file isn't too big use _FileReadToArray to read the file into an array. Then loop through the array, use Stringsplit to break the string into pieces and assign the different data items to the array holding the results. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
kemo1987 Posted November 11, 2011 Author Posted November 11, 2011 (edited) little more help plz this is my code so i also want keep it as arrays ; Get the files into arrays #include<Array.au3> #include <File.au3> Global $aFile_siplist _FileReadToArray("siplist.txt", $aFile_siplist) For $sip In $aFile_siplist Next Exit Edited November 11, 2011 by kemo1987
kemo1987 Posted November 11, 2011 Author Posted November 11, 2011 i reach to this need to get two array else > user, passtxtfile41.249.251.171|102|10261.222.93.220|102|10241.135.128.161|102|pass=====================; Get the files into arrays #include<Array.au3> #include <File.au3> Global $aFile_siplist[3] _FileReadToArray("siplist.txt", $aFile_siplist) For $sip In $aFile_siplist $sipp = StringSplit($sip, "|") $ip = $sipp[1] ;$user = $sipp[2] ;$pass = $sipp[3] MsgBox(0,"all",$ip) ; this show ip Next Exit
Malkey Posted November 11, 2011 Posted November 11, 2011 The file is unchanged, because the file is only read, not written to. Here are the three separate arrays. #include <Array.au3> ;Local $file = FileRead("siplist.txt") ; or Local $file = "122.33..23.243 user: fritz pass: 104" & @CRLF & _ "122.73..213.23 user: 102 pass: 103" Local $aIpArray = StringRegExp($file, "(?m)^([0-9\.]+)\h*user:", 3) _ArrayDisplay($aIpArray, "ip Array") Local $aUserArray = StringRegExp($file, "user:\h*(.+)\h*pass:", 3) _ArrayDisplay($aUserArray, "User Array") Local $aPassArray = StringRegExp($file, "(?m)\h*pass:\h*(.+)$", 3) _ArrayDisplay($aPassArray, "Pass Array")
jchd Posted November 11, 2011 Posted November 11, 2011 @kemo1987, Why do you think you need 3 distinct 1D arrays? Wouldn't it be simpler to fill a 2D array with 3 columns? That would make further use easier. This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)
kemo1987 Posted November 11, 2011 Author Posted November 11, 2011 (edited) Thank you very much Malkey you exactly did what i need.btw i'm very new in autoit i dont even know 2D arraythanks again Edited November 11, 2011 by kemo1987
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