LCase Function

Description

Returns a string that has been converted to lowercase.

Syntax

LCase(string)

The string named argument is any valid string expression. If string contains no valid data, Null is returned.

Remarks

Only uppercase letters are converted to lowercase; all lowercase letters and nonletter characters remain unchanged.

See Also

UCase Function.

Example

This example uses the LCase function to return a lowercase version of a string.


Uppercase = "Hello World 1234"    ' String to convert.
Lowercase = LCase(UpperCase)    ' Returns "hello world 1234".