upper: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
(New page: ==Function upper== 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=== <source lang="mtm...)
(No difference)

Revision as of 10:57, 14 December 2008

Function upper

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 TEST
  This Is a Test