我嘗試了很多嘗試用「html」後面的「foo」標籤替換「\ crf」的組合。如何用powershell替換反斜槓CR LF
我的輸入文件(tempA.txt)看起來像這樣(有1行的末尾CR LF斜線後):
foo\
bar
我使用的是蝙蝠中的PowerShell命令(文件)像這樣:
type c:\temp\tempA.txt
powershell -Command "(gc c:\temp\tempA.txt) -replace '\\`r`n', '<br>' | Out-File c:\temp\tempB.txt"
type c:\temp\tempB.txt
我的輸出文件(tempB.txt)沒有改變。我希望輸出文件包含
foo<br>bar
如何用簡單的html「br」標記替換「\ cr lf」?