upper
ToUpper converts a string to uppercase.
ToUpper converts a string to uppercase.
Input
string
Parameters
None
Returns
string
Examples
Shout a name
Input
name = "Alice"Template
{{ name | upper }}Output
ALICEFormat a country code
Input
code = "us"Template
{{ code | upper }}Output
USHow is this guide?