Uppercase
See Also: String Functions, Lowercase
Purpose
To return a string made up of the input string with all the letters capitalized.
Return Type
Syntax
(Uppercase({string-value}))
What It Does
Uppercase capitalizes all letters in {string-value}, leaving other characters unchanged.
String sLastname
Move "Smith" to sLastname
Move (Uppercase(sLastname)) to sLastname
This example would change the value of the variable sLastname from "Smith" to "SMITH".
Notes
- If
{string-value}is of a type other than string, its value will be converted to a string for output.