批处理文件 - 没有双引号的echo语句

时间:2017-12-02 09:04:06

标签: batch-file

所以,我不了解这一部分:

float*

所以......这就是问题所在。如果我尝试删除双引号(“),整个批处理文件崩溃。我需要删除它,因为它破坏了游戏的设计。有没有办法让回声允许上面的代码没有双引号?我很高兴。谢谢......

1 个答案:

答案 0 :(得分:3)

您需要通过添加插入符|

来转义此特殊字符^|

您的代码可以像这样编写:

@echo off
echo  __________________________________________________________________ 
echo ^|                                                                 ^|
echo ^| The wall in front of you moved upwards and light shined so      ^|
echo ^|                                                                 ^|
echo ^| bright, but you could move. You walked towards the light. And   ^|
echo ^|                                                                 ^|
echo ^| from here, your adventure will start soon. We welcome you to    ^|
echo ^|                                                                 ^|
echo ^| Votre Monde, Franqais...                                        ^|
echo ^|_________________________________________________________________^|
pause>nul