Lower()
Convert uppercase characters to lowercase.
Syntax
Lower(<cString>) --> cLowerString
Arguments
<cString> --> is a character string to convert to lowercase.
Returns
Lower() returns a copy of <cString> with all alphabetic characters converted to lowercase. All other characters remain the same as in the original string.
Description
Lower() is a character function that converts upper and lowercase strings to lowercase. It is related to Upper() which converts lower and uppercase strings to uppercase. Lower() is used to format character strings for display purposes. It can also be used in sorting so that the case of each string does not affect its ordering.
Examples
Lower('THIS IS UPPERCASE')
* Result: = 'this is lower case'
____________________________
Related Topics: