我有一个函数在文件中执行正则表达式替换.问题是它在它接触的每个文件的开头都添加了一个字符(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" }
如何替换我想要的行而不更改文件的任何其他部分?
解决方法
听起来它正在文件的开头写一个BOM.您可以使用out-file上的-Encoding ASCII参数将编码设置为ASCII(没有BOM).