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:
Parameter | Description |
---|---|
string exp | an expression evaluating to string |
Returns
string
Example
upper("Sally")
In this example, upper
returns "SALLY".