当用户在答案中键入空格时批处理文件崩溃

问题描述 投票:0回答:0

所以,我正在制作一个机器人来回答我的问题但是,每当我输入空格作为答案时,我突然遇到了一个问题your text我的批处理文件崩溃了,这是代码:

if /i %input%==hi goto hello
if /i %input%==yo goto hello
if /i %input%==how old are you goto age
if /i %input%==when is your birthday goto age

对不起我的英语不好

我试着放一个“字符串”的例子:

if /i "%input%"=="how old are you" goto age
if /i "%input%"=="when is your birthday" goto age

但它对我不起作用

batch-file
© www.soinside.com 2019 - 2024. All rights reserved.