#include <Array.au3>
#include <Inet.au3>
#Include <File.au3>
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;清除文件夹;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Script Start - Add your code below here
; Global function parameters
Local $PublicIP = _GetIP();获取外网IP
$ipfilere = FileRead(@ScriptDir&"\IP.txt")
$ipqqdan = StringRegExp($ipfilere, '\d+--+[^-\r\n]+', 3)
For $t = 0 To UBound($ipqqdan) - 1
MsgBox(4096, "QQ号码", "QQ11号码为: " & UBound($ipqqdan) )
MsgBox(4096, "QQ号码", "QQ12号码为: " & $ipqqdan[$t] )
$ipqq = StringRegExp($ipqqdan[$t], '[^-]+', 3)
MsgBox(4096, "QQ号码", "QQ号码为: " & $ipqq[0] )
MsgBox(4096, "QQ密码", "IP为: " & $ipqq[1] )
;MsgBox(4096, "QQ密码", "IP为: " & $ipqq[2] )
Next
|