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

If you want to convert the given text to lower case, have a look at the toLowerCase() function.


(books) Use cases and examples