TITLEIZE

Capitalizes the first letter of each word in a string and replaces some characters in the string to make the title prettier.

Syntax 

TITLEIZE(text)

Usage examples 

Example 1

Input

1
{
2
"my_action": {
3
"message": "hello world"
4
}
5
}

Formula

TITLEIZE(my_action.message)

Output

"Hello World"

Example 2

Input

1
{
2
"my_action": {
3
"message": "helloWorld"
4
}
5
}

Formula

TITLEIZE(my_action.message)

Output

"Hello World"

Example 3

Input

1
{
2
"my_action": {
3
"message": "hello_world"
4
}
5
}

Formula

TITLEIZE(my_action.message)

Output

"Hello World"
Was this helpful?