How to Capitalize whole {Tag} word?

Any questions? Need some help?
Post Reply
cyberdoggy
Posts: 34
Joined: 03 Sep 2016, 21:27

How to Capitalize whole {Tag} word?

Post 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?
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: How to Capitalize whole {Tag} word?

Post 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()}
:idea: Please read the FAQ and How to Request Help.
cyberdoggy
Posts: 34
Joined: 03 Sep 2016, 21:27

Re: How to Capitalize whole {Tag} word?

Post by cyberdoggy »

Thanks, rednoah! ;)
Post Reply