facebook twitter hatena line email

「Windows/powershell/文字列」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==文字列検索== <pre> $str = 'hogepiyo' if ($str.IndexOf('hoge') > -1) { Write-Host "hit " + $str.IndexOf('hoge') # 0 } else { Write-Host "no hit" } </pre>」)
(相違点なし)

2021年8月30日 (月) 20:29時点における版

文字列検索

$str = 'hogepiyo'
if ($str.IndexOf('hoge') > -1) {
    Write-Host "hit " + $str.IndexOf('hoge') # 0
} else {
    Write-Host "no hit"
}