gpt4 book ai didi

windows - 如何使用 powershell 将反斜杠 CR LF 替换为

转载 作者:可可西里 更新时间:2023-11-01 11:27:24 30 4
gpt4 key购买 nike

我尝试了很多尝试用“foo”之后的 html“br”标签替换“\crlf”的组合。

我的输入文件 (tempA.txt) 看起来像这样(第 1 行末尾斜杠后有一个 cr lf):

foo\
bar

我正在使用这样的 powershell 命令(在 bat 文件中):

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”标签替换“\crlf”?

最佳答案

更改您的第一个 -replace 运算符 arg 以使用双引号字符串:

... -replace "\\`r`n", '<br>'

PowerShell 中的单引号字符串是文字字符串,因此反引号无法转义字符。

关于windows - 如何使用 powershell 将反斜杠 CR LF 替换为 <br>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31552049/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com