UCase

From NSB App Studio
Revision as of 12:02, 6 November 2012 by Ghenne (talk | contribs) (Ghenne moved page Ucase to UCase)
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 returns string with all upper case chars
Dim Vet
Vet = "ned"
Print Vet & " uppercase is " & UCase(Vet)

Output

ned uppercase is NED

Related Items

LCase