UCase: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Created page with "UCASE(''string'') '''Description''' UCASE returns string with all of its lowercase characters converted to uppercase. The required parameter, ''string'', is any valid string...")
(No difference)

Revision as of 20:56, 8 July 2012

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