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

我正在尝试使用 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%是一个嵌入双引号的字符串.
然后失败了.可能还有其他角色也会导致失败.
如何才能使用配置文件中的所有文本?

尝试将所有“在文本中替换为^”.

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

你可以尝试以下方法

: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

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

\ & | > < ^

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...