LCase, LCase[$] Functions

Language Items List

Definition:

Returns a copy of a string in which all uppercase letters of an argument have been converted to lowercase; all lowercase letters and nonletter characters are unchanged.

Syntax:

LCase[$](strexpr)


Syntax Description


strexpr Any string expression

Details:

The LCase functions return a String.

UCase is the opposite of LCase and converts all lowercase letters to uppercase. Both of these functions can be used to create a comparison that ignores the case of two strings, for example:

If LCase(String1) = string1 Then Print True

See Also:

UCase