capitalizeWordsFully()

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).


Bash
capitalizeWordsFully(text) #Output: Text


Examples

Parser expression

Description

Bash
capitalizeWordsFully("heLLo WORLD!")

This example returns "Hello World!"

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