带有双引号的字符串回显使用Windows批处理输出文件

时间:2012-10-11 21:45:05

标签: windows batch-file

我正在尝试使用Windows批处理文件重写配置文件。 我循环遍历文件的行,并查找我想用指定的新行替换的行。

我有一个将该行写入文件的“函数”

:AddText %1 %2
set Text=%~1%
set NewLine=%~2%
echo "%Text%" | findstr /C:"%markerstr%" 1>nul
if errorlevel 1 (
  if not "%Text%" == "" (
      setlocal EnableDelayedExpansion
      (
          echo !Text!
      ) >> outfile.txt
  ) else (
     echo. >> outfile.txt
  )
) else (
  set NewLine=%NewLine"=%
  setlocal EnableDelayedExpansion
  (
      echo !NewLine!
  ) >> outfile.txt

)
exit /b 

问题是%Text%是嵌入双引号的字符串。 然后就失败了。可能还有其他角色也会导致失败。 如何才能使用配置文件中的所有文本?

2 个答案:

答案 0 :(得分:11)

尝试使用"替换Text中的所有^"

^是转义字符,因此"将被视为常规字符

您可以尝试以下方法:

:AddText %1 %2
set _Text=%~1%
set Text=%_Text:"=^^^"%

... rest of your code

REM for example if %1 is "blah"blah"blah"
REM _Text will be blah"blah"blah
REM Text will be blah^"blah^"blah

可能导致错误的其他字符(您可以使用上述解决方案解决)是:

\ & | > < ^ 

答案 1 :(得分:1)

在windows批处理shell(命令)中,双引号在标准命令行BUT上以^转义,在双引号字符串中有双引号

echo Hello ^"Boy^"
echo "Hello ""Boy"""

(备注:第二行也会在输出中产生外部环绕双引号)