Page 1 of 1

How to Capitalize whole {Tag} word?

Posted: 22 Jul 2018, 15:21
by cyberdoggy
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?

Re: How to Capitalize whole {Tag} word?

Posted: 22 Jul 2018, 16:12
by rednoah
{tags} is a list of String objects, so you can call String.upper() for each of them via the * spread operator:

Code: Select all

{tags*.upper()}

Re: How to Capitalize whole {Tag} word?

Posted: 22 Jul 2018, 17:39
by cyberdoggy
Thanks, rednoah! ;)