正規表現により検索した文字列を取得(unique)
(how 1) > (gc -Path .\search_result.txt).foreach{if($_.tolower() -match "[a-zA-Z]*Request"){$matches[0]}} | sort | unique (how 2) > sls "[a-zA-z]*Request" -Path .\search_result.txt | % { $_.Matches.Value.ToLower() } | sort | unique