upper: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Applied Template:MacroFunction) |
Verisimilar (talk | contribs) m (Macros:Functions:upper moved to upper) |
(No difference)
|
Revision as of 05:39, 9 March 2009
upper() Function
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.
Usage
[h: str = upper(str)]
[h: str = uper(str, numChars)]
Examples
[r: upper("this Is a Test")]
[r: lower("this Is a Test", 1)]
Returns
THIS IS A TESTThis Is a Test