uppercase

Returns string with all alphabetic characters converted to uppercase.

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

Params

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