strings.to_upper

Supported in:
strings.to_upper(string_val)

Description

Returns the original string with all alphabetic characters in uppercase.

Param data types

STRING

Return type

STRING

Code samples

Example 1

The following example returns the supplied argument in uppercase.

strings.to_upper("example") = "EXAMPLE"