How to Capitalize whole {Tag} word?

Any questions? Need some help?
Post Reply
User avatar
rednoah
The Source
Posts: 24035
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: How to Capitalize whole {Tag} word?

Post by rednoah »

There is no {tag} binding. There is a {tags} binding which will give you a List of String values. You can use *. to call the upper() method on each String value in the List.

e.g.

Code: Select all

{tags*.upper()}
:idea: Please read the FAQ and How to Request Help.
Post Reply