UPPER
us = UPPER (s)
Converts the string s
to a upper case string
us
.
See LCASE and LOWER for converting a string to lower case. UPPER and UCASE are equivalent.
Example
"abc"
s = print upper(s) ' Output: ABC
Code samples using UPPER
us = UPPER (s)
Converts the string s
to a upper case string
us
.
See LCASE and LOWER for converting a string to lower case. UPPER and UCASE are equivalent.
"abc"
s = print upper(s) ' Output: ABC