UCASE                                                                   Function

UCASE(string)

Description

UCASE returns string with all of its lowercase characters converted to uppercase. The required parameter, string, is any valid string expression.

Example

REM UCASE Example

'UCASE returnsstringwithalluppercasechars

DIM Vet

Vet = "ned"

PRINT Vet & " uppercase is " & UCASE(Vet)

Output

ned uppercase is NED

Related Items

LCASE