Rebooting the QBasic we all know and love!
Returns a character string with all letters in the specified string expression in uppercase characters.
UCASE$(string_expression)
UCASE$
string_expression is any string expression.
a$ = "aBcd#F" PRINT UCASE$(a$)
Results in:
ABCD#F