UCase

From NSB App Studio
Revision as of 20:56, 8 July 2012 by Brendon (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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