我有一个在文件中执行正则表达式替换的函数。问题是它会在它接触的每个文件的开头添加一个字符(0x00)(即使是那些它找不到匹配的文件!)。由于我正在编辑csproj文件,MSBuild 给了我这个错误:
error MSB4025: The project file could not be loaded. '.', hexadecimal value 0x00, is an invalid character. Line 2, position 1.
这是我的功能:
function fileStringRegExReplace ([string] $fileToChange, [string] $oldString, [string] $newString) {
echo "f" | xcopy "$fileToChange" "$fileToChange.og.cs" /Y /Q
$file = Get-Content "$fileToChange.og.cs" |
Foreach-Object {
$_ -replace $oldString, $newString
} |
Out-File "$fileToChange"
Remove-Item "$fileToChange.og.cs"
}
如何替换我想要的行而不更改文件的任何其他部分?