CAMELIZE

Converts the input to camel case.

Syntax 

CAMELIZE(text)

Usage 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?