Jump to content

Recommended Posts

Posted

Hello

i have a text file with text like that:

122.33..23.243 user: fritz pass: 102

122.73..213.23 user: 102 pass: 102

i want put ip , user and pass in 3 arrays

also i want keep file with no change

ip array

122.33..23.243

122.73..213.23

user array

fritz

102

pass array

102

102

Thanks in advance :D

Posted

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

 

Posted

i reach to this need to get two array else > user, pass

txtfile

41.249.251.171|102|102

61.222.93.220|102|102

41.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
Posted

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")
Posted

@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 here
RegExp tutorial: enough to get started
PCRE 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)

Posted (edited)

Thank you very much

Malkey you exactly did what i need.

btw i'm very new in autoit i dont even know 2D array

thanks again :D

Edited by kemo1987

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
  • Recently Browsing   0 members

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