我正在制作一个小批量文件来查找带有etre的法语完备时态动词,它来自文本文件。 整个文件有效,但此段除外:
echo Type Q and hit enter to quit, enter any other key to try another verb.
set /p option=Enter Option:
IF %option%==Q(
goto :quit
) else (
goto :1
)
键入Q并输入它工作正常,但其他任何事情都会出现错误'错误的语法'。我在这里看不出有什么不对,有人可以帮忙吗?
答案 0 :(得分:2)
只需添加一个空格
IF %option%==Q (