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


toLowerCase(text) #Output: Text



Parser expressionDescription


%{toLowerCase("heLLo WORLD!")}


This example returns:

hello world!


%{toLowerCase("Jira Workflow TOOLBOX!")}T


This example returns:

jira workflow toolbox!



Parameters used in this function

ParameterInput (data type)Description
text

Any given text.



This function returns a


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



Use cases and examples



Short description

Converts a given text with all its characters to lower case.

Output