RETURNS THE STRING CONVERTING STRING S TO UPPERCASE
ACTION
The function UPPER$(S) returns the string converting string S to uppercase.
Remark: the keyword UPPER$ ends by '$' : it means that the returned value is a string.
SYNTAX:
Result$=UPPER$(S)
USE ERROR EXAMPLE
print upper$("abc")
print "ABC"
UPPER$()
UPPER$(S)
SEE ALSO
INSERT$()
INSTR()
LEFT$()
LEN()
LOWER$()
LTRIM$()
MID$()
RIGHT$()
RTRIM$()
STR$()
STRING$()
TRIM$()