Built-in Functions → upper

upper() is a string function that returns all the alphabetic characters in its string argument in upper case.

Signature

upper(string exp)

The following table illustrates the upper() parameter:

ParameterDescription
string expan expression evaluating to string

Returns

string

Example

upper("Sally")

In this example, upper returns "SALLY".