lower: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Applied Template:MacroFunction) |
Verisimilar (talk | contribs) m (Macros:Functions:lower moved to lower) |
(No difference)
|
Revision as of 03:01, 9 March 2009
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
[h: str = lower(str)]
[h: str = lower(str, numChars)]
Example
[r: lower("This Is a Test")]
[r: lower("This Is a Test", 1)]
Returns
this is a testthis Is a Test