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