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