我在 webserve 上有一个 php 脚本,它显示(作为纯文本,没有 html 格式)dhcp 离开信息。输出格式如下,用逗号分隔:
dnsname,leavetime,macaddress,ipaddress
我希望能够使用invoke-webrequest powershell 命令解析这些信息并获取mac 地址。
我尝试了以下代码:
invoke-webrequest "http://www.xxx.xxx"
控制台的输出是:
StatusCode : 200
StatusDescription : OK
Content : *hostname*,in 7 days ,**Mac Address**,*ip address*
RawContent : HTTP/1.1 200 OK
Keep-Alive: timeout=2, max=100
Connection: Keep-Alive
Content-Length: 50
Content-Type: text/plain; charset=ISO-8859-1
Date: Mon, 25 Feb 2013 12:04:33 GMT
Server: Apache
ega008...
Forms :
Headers : {[Keep-Alive, timeout=2, max=100], [Connection, Keep-Alive], [Content-Length, 50], [Content-Type,
text/plain; charset=ISO-8859-1]...}
Images : {}
InputFields : {}
Links : {}
ParsedHtml :
RawContentLength : 50
而不是这一切,我想要的只是mac地址(突出显示的粗体)
非常感谢任何帮助。
谢谢。