UCase[$] Functions

Language Items List

Definition:

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

Syntax 1:

UCase[$](strexpr)


Syntax Description


strexpr Any string expression

Details:

The UCase[$] functions return a String.

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

If UCase(STRING1) = STRING1 Then Print True

See Also:

Asc Function
LCase, LCase$ Functions