toUpperCase()

This function converts a given text with all characters to upper case.


Bash
toUpperCase(text) #Output: Text


Examples

Parser expression

Description

Bash
toUpperCase("heLLo WORLD!")

This example returns

HELLO WORLD!

Bash
toUpperCase("Jira Workflow Toolbox!")

This example returns

JIRA WORKFLOW TOOLBOX!

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

text

Text

Any given text.

Output

This function returns a text


📚 Use cases and examples