「PowerShell」Replace関数で文字列を置き換えるサンプル
書式
1."対象文字列".Replace(置換対象の文字列 , 置換後の文字列)
.Replaceは置換対象の文字として英字の大文字と小文字を区別します。
2."対象文字列" -replace 置換対象の文字列 , 置換後の文字列
-replaceは置換対象の文字として英字の大文字と小文字を区別しません
使用例
$target = "山田太郎###山田太郎".Replace('太郎', '東京') Write-Host $target $target2 = "yamada***tokyo" -replace 'yamada', 'oosaka' Write-Host $target2
実行結果
PS C:\study\powershell> .\test.ps1 山田東京###山田東京 oosaka***tokyo