How to Capitalize whole {Tag} word?
-
- Posts: 41
- Joined: 03 Sep 2016, 21:27
How to Capitalize whole {Tag} word?
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?
{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()}
Please read the FAQ and How to Request Help.
-
- Posts: 41
- Joined: 03 Sep 2016, 21:27
Re: How to Capitalize whole {Tag} word?
Thanks, rednoah!