如何回显包含 '&' 的环境变量在DOS批处理中?
当我输入:
set hi=Hello^&World!
echo %hi%
它打印 Hello 并告诉我 World 不是命令
我希望它打印 Hello&World!
如何做到这一点?
When I type:
set hi=Hello^&World!
echo %hi%
it print Hello and tell me World is not a command
I want it prints Hello&World!
How to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这对我有用:
输出
This works for me:
Outputs
回显变量内容的唯一安全方法是使用此处的延迟扩展。
如果使用百分比扩展,失败的话要看内容。
延迟扩展更有用,因为它不解释任何特殊字符。
更多信息请参见 SO:解析器如何作品
The only secure way to echo the content of a variable is to use the delayed expansion here.
If percent expansion is used, it depends on the content if it fails.
The delayed expansion is more usefull as it doesn't interpret any special characters.
More info at SO: How the parser works
正常
工作
编辑
所以问题不在于 ECHO 命令,而在于变量的赋值,正如 @Bali 正确指出的那样。
just
works
EDIT
so the problem is not with
ECHO
command, but with the assignment of the variable, as @Bali correctly pointed out.