toupper (s)

The toupper(s) function returns the string s in which all lowercase characters are converted to their uppercase equivalents. All other characters are passed unmodified.

This function returns a value of type Text.

Example

 toupper ("New York")

Result: "NEW YORK"