按DIV ID解析HTML

时间:2017-09-13 12:54:08

标签: html powershell parsing

我试图从网页中解析实际值,但是,我只能提取源代码而不是值。

HTML code:

<div id="UpdateString">As of 9/10 /20178:46:24 AM, We are currently UP with 2210 servers. Next update in 5 Minutes.</div>

PowerShell代码:

$URI = "http://example.com"
$HTML = Invoke-WebRequest -Uri $URI
($HTML.ParsedHtml.GetElementsByTagName('div') |
    Where { $_.id -eq 'UpdateString' }).InnerText

我正在尝试提取值“2210”。

0 个答案:

没有答案