越狱熊 发表于 2015-2-27 17:35:39

表达式总是错误,请求帮助!!

#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

h20040606 发表于 2015-2-27 19:02:07

#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

h20040606 发表于 2015-2-27 19:02:31

注意引号的使用

lxwlxwayy 发表于 2015-2-27 20:46:44

帮你顶顶{:face (427):}

zhkofboy 发表于 2015-2-28 15:53:36

引号地方,当时我我用的时候,也晕了。

Huiseyu 发表于 2015-3-28 21:49:03

这样也可以MsgBox(8096 , "IPV4 Address1 :" ,@IPAddress1)

netegg 发表于 2015-3-28 21:59:43

回复 6# Huiseyu

这有什么用,和楼主要实现的根本不是一回事

Huiseyu 发表于 2015-3-28 22:42:23

回复 7# netegg


    没看请题意,以为只用dos显示IP呢。

atdanielwings 发表于 2015-3-31 18:39:16

帮助文件里面有正则教程。

user030 发表于 2015-3-31 23:04:26

如此情景,值得借鉴
页: [1]
查看完整版本: 表达式总是错误,请求帮助!!