---
title: CAMELIZE
url: https://www.tines.com/docs/formulas/functions/camelize/
kind: formula-function
---

*[tines.com](https://www.tines.com/llms.txt) › [Docs](https://www.tines.com/docs/llms.txt) › [Formulas](https://www.tines.com/llm/docs/formulas.md) › [Functions](https://www.tines.com/llm/docs/formulas/functions.md)*

# CAMELIZE

*[View on tines.com](https://www.tines.com/docs/formulas/functions/camelize/)*

Converts the input to camel case.

**Categories:** Text

## Syntax

```
CAMELIZE(text)
```

## Examples

### Example 1

Input:

```json
{
  "my_action": {
    "message": "hello_world"
  }
}
```

Formula:

```
CAMELIZE(my_action.message)
```

Output:

```json
"helloWorld"
```

### Example 2

Input:

```json
{
  "my_action": {
    "message": "foo bar"
  }
}
```

Formula:

```
CAMELIZE(my_action.message)
```

Output:

```json
"fooBar"
```
