好吧所以我正在尝试制作一个聊天程序,基本上如果我在set / p命令中键入任何空格,它就会关闭窗口。 码: 聊天室
echo User: %account%
echo Chatting with: %sndaccount%
echo.
set /p output=<data/%sndaccount%_input.txt
echo Receive: %output%
set /p input=Send:
echo "%input%">data/%account%_input.txt
if %input%==!exit (
cls
echo available>data/%account%check.txt
exit
)
cls
goto chatroom
如果我在set /p input=Send:
命令中用空格EX:Hello World键入任何内容,它将关闭窗口(崩溃)。
我该怎么做才能防止它崩溃?