在 Windows Batch For 循环中转义字符串

发布于 2024-12-03 13:40:44 字数 268 浏览 0 评论 0原文

我在使用以下代码时遇到问题:

FOR /f "tokens=*" %%A in (%MYFILE_PATH%) do (
    [other stuff]
    echo %%A>> "%MYFILE_PATH%.scratch"
)

正在读取的文件中包含 XML,并且当 <和>标志被读取,脚本抛出错误。 如何转义 %%A 的内容以安全地回显到输出文件? 我不想在它周围加上双引号,因为它也会回显引号。

谢谢

I'm having problems with the following code:

FOR /f "tokens=*" %%A in (%MYFILE_PATH%) do (
    [other stuff]
    echo %%A>> "%MYFILE_PATH%.scratch"
)

The file being read has XML in it and when < and > signs are read, the script throws errors.
How can I escape the contents of %%A to safely echo to the output file?
I don't want to put double quotes around it since it will then echo the quotes too.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

地狱即天堂 2024-12-10 13:40:44
FOR /f "tokens=*" %%A in (%MYFILE_PATH%) do (
    [other stuff]
    (echo %%A)>>"%MYFILE_PATH%.scratch"
)

将 %%A 的内容附加到另一个文件时,您实际上所做的就是复制该文件。

编辑

 FOR /f "tokens=* delims=" %%A in (%MYFILE_PATH%) do (
    [other stuff]
    (echo %%A)>>"%MYFILE_PATH%.scratch"
)
FOR /f "tokens=*" %%A in (%MYFILE_PATH%) do (
    [other stuff]
    (echo %%A)>>"%MYFILE_PATH%.scratch"
)

When appending the contents of %%A into another file, all that you are essentially doing is copying the file.

EDIT

 FOR /f "tokens=* delims=" %%A in (%MYFILE_PATH%) do (
    [other stuff]
    (echo %%A)>>"%MYFILE_PATH%.scratch"
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文