Windows/powershell/文字列
提供: 初心者エンジニアの簡易メモ
2021年8月30日 (月) 20:29時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==文字列検索== <pre> $str = 'hogepiyo' if ($str.IndexOf('hoge') > -1) { Write-Host "hit " + $str.IndexOf('hoge') # 0 } else { Write-Host "no hit" } </pre>」)
文字列検索
$str = 'hogepiyo' if ($str.IndexOf('hoge') > -1) { Write-Host "hit " + $str.IndexOf('hoge') # 0 } else { Write-Host "no hit" }