1 2 3 4 5 6 7 8 9 10 |
$web = "<h1>Hello, World!</h1><h1>Bye, World!</h1>" $HTML = New-Object -Com "HTMLFile" [string]$htmlBody = $web $HTML.write([ref]$htmlBody) foreach($h1 in $HTML.body.getElementsByTagName("h1")) { $h1.innerText } |
1 2 3 4 5 6 7 8 9 10 |
$web = "<h1>Hello, World!</h1><h1>Bye, World!</h1>" $HTML = New-Object -Com "HTMLFile" [string]$htmlBody = $web $HTML.write([ref]$htmlBody) foreach($h1 in $HTML.body.getElementsByTagName("h1")) { $h1.innerText } |