正規表現でテキストを置換する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
参考https://stackoverflow.com/questions/40679169/how-do-i-replace-a-line-in-a-file-using-powershell |
|