StringLower()
- Last UpdatedJul 22, 2024
- 1 minute read
Converts all uppercase characters in text string to lowercase and returns the result.
Category
String
Syntax
StringResult = StringLower( Text );
Parameter
Text
String to be converted to lowercase. Actual string or a string attribute.
Remarks
Lowercase characters, symbols, numbers, and other special characters are not affected.
Examples
StringLower("TURBINE") ' returns "turbine";
StringLower("22.2 Is The Value") ' returns "22.2 is the value";