See Also: String Functions, Uppercase
Lowercase returns a string with all its characters converted to lower case.
(Lowercase( {string-value} ))
Lowercase changes all capital letters (A..Z) in the {string-value} to lowercase, leaving other characters unchanged.
Move (Lowercase("AEIOU812")) To sTitle
In this example , the string "aeiou812" is moved to the variable sTitle.
This function returns a value of type string. If the result of this function is moved to a variable of type other than string, its value is converted to the destination type.
If {string-value} is of type other than string, its value will be converted to a string for output.