コード例
(Get-Content /path/to/file) -replace "置換したい文字列","置換する文字列"
複数の文字列を置換したい場合
そのまま後ろに -replace
を追加するだけ
コード例
(Get-Content /path/to/file)
-replace "置換したい文字列","置換する文字列"
-replace "置換したい文字列2","置換する文字列2"
正規表現を使う場合
-replace
内でそのまま正規表現が使える
コード例
(Get-Content /path/to/file) -replace "<body>.+?</body>",""
変換後の内容をファイルに保存
そのままリダイレクトすればいい
コード例
(Get-Content /path/to/file) -replace "置換したい文字列","置換する文字列" > /path/to/file/replaced