UCase

From NSB App Studio
Revision as of 15:38, 25 March 2019 by Ghenne (talk | contribs) (→‎Related Items)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

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 (Basic)

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