* 正規表現でテキストを置換する [#a47cec93]

 PS> gc .\in.txt
 あいうえお日本語かきくけこ
 
 PS> $in_file = 'in.txt'
 PS> $out_file = 'out.txt'
 PS> $find = '日本語'
 PS> $replace = 'にほんご'
 PS> (Get-Content $in_file).replace($find, $replace) | Set-Content $out_file

- ファイルから置換する場合、元のファイルはSJISかUTF8(BOM付き)かUTF16にする。

** 参考 [#qb9178db]

https://stackoverflow.com/questions/40679169/how-do-i-replace-a-line-in-a-file-using-powershell

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS