StringUpper()
- Last UpdatedSep 24, 2024
- 1 minute read
将所有小写文本字符转换为大写,并返回结果。
类别
字符串型
语法
StringResult = StringUpper( Text );
参数
文本
要转换为大写的字符串。实际字符串或字符串属性。
附注
大写字符、符号、数字以及其它特殊字符不受影响。
示例
StringUpper("abcd"); ‘ 返回 "ABCD";
StringUpper("22.2 is the value"); ‘ 返回 "22.2 IS THE VALUE";