使用PowerShell查找单词或字符串

时间:2018-11-20 09:35:54

标签: powershell

我一直在尝试检查网页中是否包含单词。简而言之,我尝试使用:

invoke-WebRequest https://example.com | select-string "some text"

1 个答案:

答案 0 :(得分:1)

Invoke-WebRequest不仅返回网页内容(例如标头,响应代码等),还返回更多内容。您需要使用响应中的Content属性来获取网页的内容:

if ((Invoke-WebRequest "https://example.com").Content | Select-String "some text") {
    Write-Host "I found the text."
}