ToLower

(Engine-Level Function)

Description: Returns a text string with all the characters converted to lower case.
Returns: Text
Usage: Script or steady state.
Function Groups: String and Buffer
Related to: ToUpper
Format:  ToLower(String)
Parameters:  
String
Required. Any text expression giving the string to convert to all lower case characters.
Comments: The return value will contain all the same characters as the original string, except each character which is an upper case letter will be replaced with the corresponding lower case letter. All other characters remain unchanged.

Example:

lowerString = ToLower("Hello, Chum");

Upon execution of this statement, lowerString will contain the string "hello, chum".