PS C:\Users\duyanran\Desktop\data\processing-data\two_change> (Get-Content $test.txt) | % {
>> if ($_.ReadCount -eq 1) {
>> $_ -replace "$im", "$j"
>> }
>> else {
>> $_
>> }
>> } | Set-Content $test.txt
我尝试在powershell里替换但是运行有问题
请问对于一个文本文件如内容
1 + 2im 1 + 9im
我想用程序批量替换其中的" + "
(包括空格)到+
(去除空格),且im
变为j
,有没有程序可以实现呢,其实替换也很方便,只是想知道程序化处理有没有办法,谢谢啦