LCase
Returns a string that has been converted to lower case.
Syntax
LCase(<value>)
Parameters
<value>
Type: Text
Text to be converted to lowercase. See also
Specifying text strings as arguments.
(return)
Type: Text
Lowercase copy of <value>.
Notes
The input string is converted to lowercase, according to the rules of the input locale.
If the current data value is NULL, <value> is "" and the return value is "".
Example
The following example converts the contents of the address variable to lowercase:
address.LCase()
For a mrScriptBasic example that uses LCase, see Example 2: Getting a list of valid languages.
See also