UCASE

us = UCASE (s)

Converts the string s to a upper case string us.

See LCASE for converting a string to lower case. UCASE and UPPER are equivalent.

Example

s = "abc"
print ucase(s)      ' Output: ABC