Table of Contents
UCASE$
PET VIC-20 C64 C16 Plus/4 C128 X16
The UCASE$()
function converts all lowercase letters in a string to their uppercase equivalent.
Note
Uppercase letters, as well as non-alphabetical characters will not be affected.
Function header
DECLARE FUNCTION UCASE$ AS STRING (instr$ AS STRING) SHARED STATIC INLINE
Examples
PRINT CHR$($0e) : REM switch to lowercase display PRINT UCASE$("THE String in UpperCase") : REM will output: "THE STRING IN UPPERCASE"