This function converts the first letter of all whitespace-separated words in the given text to upper case.

Syntax
capitalizeWords(text) #Output: Text
Examples
Parser expressionDescription
 capitalizeWords("heLLo WORLD!") 

This example returns "HeLLo WORLD!"

 capitalizeWords("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


Use cases and examples