> ## Documentation Index
> Fetch the complete documentation index at: https://docs.metrics-man.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Camelcase

# \$camelCase

The `$camelCase` operator converts a string to camelCase format.

## Input

* A single string value

## Output

* The input string converted to camelCase format

## Examples

### Convert to CamelCase

```json theme={null}
{
  "$camelCase": [
    "hello world test"
  ]
}
```

Result: `"helloWorldTest"`

### Convert with Hyphens

```json theme={null}
{
  "$camelCase": [
    "convert-this-to-camel"
  ]
}
```

Result: `"convertThisToCamel"`

### Field Value

```json theme={null}
{
  "$camelCase": [
    {
      "$input": "input_text"
    }
  ]
}
```

Result: The input\_text field converted to camelCase format
