UpperCase method (text)
Converts the text to upper case.
Syntax
text.UpperCase
Returns the text in upper case.
Example
{% Var text1 = 'Alpha Bravo Charlie' %}
{% Var text2 = 'aBcDeF' %}
{{ text1.UpperCase }}, {{ text2.UpperCase }}
The above example would output: ALPHA BRAVO CHARLIE, ABCDEF
.