lower

From RPTools Wiki
Revision as of 10:47, 13 December 2008 by Craig (talk | contribs) (New page: ==Function lower== Returns the lower case version of a string. If the number of characters is not specified then the whole string is converted to lower case. ===Usage=== <source lang="mtm...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Function lower

Returns the lower case version of a string. If the number of characters is not specified then the whole string is converted to lower case.

Usage

[h: str = lower(str)]
[h: str = lower(str, numChars)]


Examples

[r: lower("This Is a Test")]
[r: lower("This Is a Test", 1)]

Returns

  this is a test
  this Is a Test