我一直在尝试检查网页中是否包含单词。简而言之,我尝试使用:
invoke-WebRequest https://example.com | select-string "some text"
答案 0 :(得分:1)
Invoke-WebRequest
不仅返回网页内容(例如标头,响应代码等),还返回更多内容。您需要使用响应中的Content
属性来获取网页的内容:
if ((Invoke-WebRequest "https://example.com").Content | Select-String "some text") {
Write-Host "I found the text."
}