====== Uppercase ====== Parameter "uppercase" means that the content of corresponding variable (or result of function) will be converted to upper case. This parameter will not touch digits and non-alpha characters. It is very similar to [[en:public:developer:template_system:tags:parameters:lowercase]] parameter. **NOTE:** By default the resulting content will be parsed (all <#..> tags will be evaluated) before to apply this filter. You can control this behavior throught the parameter [[en:public:developer:template_system:tags:parameters:AnalyzeTagParams]] ==== Values ==== ^ Value ^ Description ^ | 1 | Means that value must be converted to upper case. If something else is specified then parameter "uppercase" is ignored. | ==== Example ==== <#FullName setValue="John Smith"> Full name is <#FullName uppercase="1">. Output: Full name is JOHN SMITH.