lower

From RPTools Wiki
Revision as of 14:03, 10 January 2020 by Phergus (talk | contribs)
Jump to navigation Jump to search

 This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.

lower() Function

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

lower(str)
lower(str, numChars)

Example

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

Returns

  this is a test
this Is a Test