display converted string
the following code would convert "hello" into "HELLO"
{mpf:convert=uppercase||data=hello}
convert section (use with closing token)
this would convert all characters in section to uppercase
{mpf:convert=uppercase}
... this string will be converted to uppercase ...
{/mpf:convert=uppercase}
store converted data in myVar (use as embedded token)
the following code would store "HELLO" in a variable named myVar
{mpf:set=myVar||{mpf:convert=uppercase||data=hello}}
|