There are three new text case functions in PropertyWizard version 1-8-2. They allow you to change text between lower and upper case, and to capitalise the words of a piece of text.
toLowercase(<text>) and toUppercase(<text>)
These two functions convert text to lowercase and to uppercase respectively.
They are useful when you want to enforce a particular annotation standard. For example, if you want to change all the Room names in a project to uppercase, you can use a formula like this:
toUppercase(Name)
You can run this once to change the names and then delete it. Or you can leave it running – in which case it will change any typed-in room names to uppercase automatically.
toTitlecase(<text>)
This function converts the <text> to title case, generally by converting ‘… the first character of each word to uppercase and the rest of the characters to lowercase’. Words that are all uppercase are assumed to be acronyms and are left unchanged.