upcase
string | upcase
returns string
Converts a string to all uppercase characters.
{{ product.title | upcase }}
Code
{{ product.title | upcase }}Data
{
"product": {
"title": "Health potion"
}
}Output
HEALTH POTION
Output
HEALTH POTIONWas this page helpful?