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
s = "abc"
print upper(s) ' Output: ABCCode 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.
s = "abc"
print upper(s) ' Output: ABC