Hi AutoIt Scriptwriters! I want to extract my RDPs informations and write in file/console
here is my code:
$txt = "127.0.0.1:3389@Administrator;12345" & @CRLF & "120.0.0.1:3389@Guest;54321"
$ArrayTXT = StringSplit($txt, @CRLF, 3)
For $IP In $ArrayTXT
$Ex_IPAddress = StringRegExpReplace($IP, ":.*", "")
$Ex_IPAddressPort = StringRegExpReplace($IP, "@.*", "")
$Ex_DomainUsername = StringRegExpReplace(StringRegExpReplace($IP, ";.*", ""), ".*@", "")
$Ex_Password = StringRegExpReplace($IP, ".*;", "")
$O_RDPFile = "full ip address: " & $Ex_IPAddressPort & @CRLF & "username: " & $Ex_DomainUsername & @CRLF & "password: " & $Ex_Password & @CRLF & @CRLF
ConsoleWrite($O_RDPFile)
Next
I want to extract texts, convert them and then show in console or write in file like this:
full ip address: 127.0.0.1:3389
username: Administrator
password: 12345
full ip address: 120.0.0.1:3389
username: Guest
password: 54321
[SOLVED] I've putted on right code here, you can use this little code if you need