我使用下面的管道读取文件并替换其中的一行并将其保存到另一个文件,但发现目标文件中的字符串未被替换,它仍然是旧的。
原始行是:name-1a2b3c4d
新行应该是:name-6a5e4r3h
(Get-Content "test1.xml") | ForEach-Object {$_ -replace '^name-.*$', "name-6a5e4r3h"} | Set-Content "test2.xml"
那里有什么遗漏?
答案 0 :(得分:10)
您遗漏的一件事是-replace运算符在数组上运行得很好,这意味着您根本不需要foreach-object循环:
(Get-Content "test1.xml") -replace '^name-.*$', 'name-6a5e4r3h' | Set-Content test2.xml
答案 1 :(得分:1)
您没有更改$ _变量。
您可以尝试:
$lines = Get-Content $file
$len = $lines.count
for($i=0;$i-lt$len;$i++){
$lines[$i] = $lines[$i] -replace $bad, $good
}
$lines > $outfile