LCase Function

Returns a FixStr (String) that has been converted to lowercase.

Syntax

LCase[$](string)

The required string argument is any valid string expression. If string contains Null, Null is returned.

Remarks

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

The LCase$ form returns String values. The LCase form returns FixStr values.

Example

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

Dim UpperCase, LowerCase
Uppercase = "Hi All 1234"  ' String to convert.
Lowercase = Lcase(UpperCase)    ' returns "hi all 1234".

 

See Also

UCase Function