0

我正在尝试使用 Powershell 从文件中删除字符串。该字符串来自另一个文件。

我的代码可以成功读取文件,但不能从其他文件中删除字符串。出了什么问题,我该如何解决?

$inputFile          = ".\usermenuTest1.4d"
$outputFile         = ".\usermenuTest2.4d"
$destinationFile    =  "$outputFile.new"

# Read input file into variable
$target  = [IO.File]::ReadAllText($inputFile)

# Replace target in output file
(Get-Content $outputFile) | Foreach-Object {
    $_ -replace $target, ''
    } | Set-Content $destinationFile
4

1 回答 1

0

正如@KeithHill 已经指出的那样,您的脚本当前正在$outputFile逐行处理。尝试这样的事情:

$s = [IO.File]::ReadAllText($outputFile)
$r = [IO.File]::ReadAllText($inputFile)

$s -replace $r, '' | Out-File $destinationFile
于 2013-05-01T07:51:05.297 回答