返回介绍

If var [not] between LowerBound and UpperBound

发布于 2020-11-08 02:37:57 字数 2207 浏览 1033 评论 0 收藏 0

根据数值或字母顺序检查变量的内容是否在两个值之间(包含边界)。

if Var between LowerBound and UpperBound
if Var not between LowerBound and UpperBound

参数

Var

需要被检查的 变量 名称.

LowerBound

指定范围的下限, Var 必须大于或等于此字符串, 数字或变量引用.

UpperBound

指定范围的上限, Var 必须小于或等于此字符串, 数字或变量引用.

备注

如果这三个参数都为纯数值,那么它们将被作为数字而不是字符串进行比较。其他情况下, 它们将被作为字符串按字母顺序进行比较 (即字母次序将决定 Var 是否在指定范围内). 此时,可以使用 StringCaseSense On 来设置在比较时区分大小写。

运算符 "between", "is", "in" 和 "contains" 不支持用于 表达式 中.

相关

IfEqual/Greater/Less, if var in/contains MatchList, if var is type, IfInString, StringCaseSense, EnvAdd, 区块, Else

示例

if var between 1 and 5
    MsgBox, %var% is in the range 1 to 5, inclusive.

if var not between 0.0 and 1.0
    MsgBox %var% is not in the range 0.0 to 1.0, inclusive.

if var between %VarLow% and %VarHigh%
    MsgBox %var% is between %VarLow% and %VarHigh%.

if var between blue and red
    MsgBox %var% is alphabetically between the words blue and red.

LowerLimit = 1
UpperLimit = 10
InputBox, UserInput, Enter a number between %LowerLimit% and %UpperLimit%
if UserInput not between %LowerLimit% and %UpperLimit%
    MsgBox Your input is not within the valid range.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文