How to Capitalize whole {Tag} word?

Any questions? Need some help?
Post Reply
olyly94
Posts: 1
Joined: 09 Oct 2018, 03:48

How to Capitalize whole {Tag} word?

Post by olyly94 »

I am using the GUI version from the windows store and was wondering what the code would be to just capitalize only the whole {tag} word, not just the 1st letter? Thanks.
User avatar
rednoah
The Source
Posts: 22985
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