跳转到内容

Rexx 编程/Rexx 指南/大小写敏感

来自维基教科书,自由的教学读物

标识符和关键字

[编辑 | 编辑源代码]

Rexx 解释器不区分大小写。这意味着包含小写字母的标识符名称和关键字被视为与包含大写字母的那些相同。

/* These variables are all the same */
count = 1
Count = COUNT + 1
say count

文字字符串

[编辑 | 编辑源代码]

文字字符串中保留字母大小写。

say 'Hello!'  /* Hello! */
SAY 'HELLO!'  /* HELLO! */

字符串比较

[编辑 | 编辑源代码]

在 Rexx 中,比较运算符区分大小写,因此包含不同字母大小写的字符串将不被解释为匹配字符串。

if "abc" = "ABC" then
  say "The strings are the same!"    /* This does not happen because the strings are not the same */
华夏公益教科书