upper

From RPTools Wiki
Revision as of 10:57, 14 December 2008 by Craig (talk | contribs) (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...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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