This function converts all whitespace-separated words in the given text into capitalized words (only the word's first letter is upper case and the remaining letters are lower case).

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

This example returns "Hello World!"

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