1. Docs
  2. Formulas
  3. Functions

CAMELIZE

Converts the input to camel case.

Categories: Text

Syntax

CAMELIZE(text)

Examples

Example 1

Input

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

Formula

CAMELIZE(my_action.message)

Output

"helloWorld"

Example 2

Input

1
{
2
"my_action": {
3
"message": "foo bar"
4
}
5
}

Formula

CAMELIZE(my_action.message)

Output

"fooBar"
Was this helpful?