表达式总是错误,请求帮助!!
#include<Constants.au3>Local $p = Run(@ComSpec& " /c ipconfig |find "IPv4" |find "172.130" ","" , @SW_HIDE , 15)
Local $line
ProcessWaitClose($p)
While 1
$line = StdoutRead($p)
If @error Then ExitLoop
MsgBox(0, "IP地址:", $line)
WEnd
#include<Constants.au3>
Local $p = Run(@ComSpec & ' /c ipconfig |find "IPv4" |find "172.130" ', "", @SW_HIDE, 15)
Local $line
ProcessWaitClose($p)
While 1
$line = StdoutRead($p)
If @error Then ExitLoop
MsgBox(0, "IP地址:", $line)
WEnd 注意引号的使用 帮你顶顶{:face (427):} 引号地方,当时我我用的时候,也晕了。 这样也可以MsgBox(8096 , "IPV4 Address1 :" ,@IPAddress1) 回复 6# Huiseyu
这有什么用,和楼主要实现的根本不是一回事 回复 7# netegg
没看请题意,以为只用dos显示IP呢。 帮助文件里面有正则教程。 如此情景,值得借鉴
页:
[1]