Page 1 of 1

How to Capitalize whole {Tag} word?

Posted: 09 Oct 2018, 03:51
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.

Re: How to Capitalize whole {Tag} word?

Posted: 09 Oct 2018, 04:14
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()}