Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 239 Bytes

804-string-upper.markdown

File metadata and controls

15 lines (9 loc) · 239 Bytes

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: ABC