To_lower

Formats a string into lowercase letters.

Syntax

to_lower($input)

Parameters

$input: The sting to format.

Example

{
    "key": "ONE TWO. tHrEe FoUR" 
}
{
    numbers: to_lower(key)
}
{
    "numbers": "one two. three four"
}