Returns the upper case version of a string. If the number of characters is not specified then the whole string is converted to upper case.
upper(str)
upper(str, numChars)
[r: upper("this Is a Test")][r: upper("this Is a Test", 1)]Returns
THIS IS A TEST This Is a Test