capitalizeWords()

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


Bash
capitalizeWords(text) #Output: Text


Examples

Parser expression

Description

Bash
 capitalizeWords("heLLo WORLD!") 

This example returns "HeLLo WORLD!"

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


📚 Use cases and examples