upper (Function)
Converts the simple letters in the input string to the equivalent capital/block letters.
Syntax
<STRING> str:upper(<STRING> input.string)
Query Parameters
Name | Description | Default Value | Possible Data Types | Optional | Dynamic |
---|---|---|---|---|---|
input.string | The input string that should be converted to the upper case (equivalent capital/block letters). | STRING | No | Yes |
Example 1
upper("Hello World")
This converts the simple letters in the input.string
to theequivalent
capital letters. In this scenario, the output is "HELLO WORLD".