facebook twitter hatena line email

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"
}