lowercase

Returns string with all alphabetic characters converted to lowercase.

1
{{$lowercase [value]}}
Example
format JSON XML
Data JSON
1
2
3
4
5
{
"Product": {
"name": "SIMPLE product"
}
}
HTML
1
{{$lowercase Product.name}}
Result
Data XML
1
2
<Product name="SIMPLE product">
</Product>
HTML
1
{{$lowercase Product._name}}
Result

Params

1
2
3
{{$lowercase
"string value"
}}