> ## 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.

# Tolower

# \$toLower

The `$toLower` operator converts a string to lowercase.

## Input

* A single string value

## Output

* The input string with all characters converted to lowercase

## Examples

### Basic Conversion

```json theme={null}
{
  "$toLower": [
    "Hello, World!"
  ]
}
```

Result: `"hello, world!"`

### Field Value

```json theme={null}
{
  "$toLower": [
    {
      "$input": "EMAIL"
    }
  ]
}
```

Result: The EMAIL field converted to lowercase
