如果“ 71” GTR“ 7000”产生true

时间:2018-10-30 08:17:31

标签: batch-file if-statement

根据我的代码,如果%~1大于7000,请转到ExceedError

IF "%~1" GTR "7000" GOTO ExceedError

ExceedError的内容:

ECHO Value exceeded the maximum value. See help file.
EXIT /B

但是这发生了:

...modules>If "71" GTR "7000" GOTO ExceedError

...modules>Echo Value exceeded the maximum value. See help file.
Value exceeded the maximum value. See help file.

...modules>exit /B

发生了什么事?有什么问题吗?

1 个答案:

答案 0 :(得分:7)

您已经用双引号将参数引起来,这将强制进行字符串比较。 要比较数字,请尝试不使用引号:

IF %~1 GTR 7000 GOTO ExceedError

如果要防止错误,可以再添加一行:

set /a "_number=%~1" >nul 2>&1 || set "_number=0"
IF %_number% GTR 7000 GOTO ExceedError

在输入错误的情况下,您需要将值与0作为默认值进行比较。您可以根据需要进行更改