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

Syntax
toUpperCase(text) #Output: Text
Examples
Parser expressionDescription
%{toUpperCase("heLLo WORLD!")}

This example returns:

HELLO WORLD!

%{toUpperCase("Jira Workflow Toolbox!")}

This example returns:

JIRA WORKFLOW TOOLBOX!

Additional information

Parameters used in this function

ParameterInput (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.


Use cases and examples