lower: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Macros:Functions:lower moved to lower) |
No edit summary |
||
(5 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{stub}} | |||
{{MacroFunction | {{MacroFunction | ||
|name=lower | |name=lower | ||
|version | |||
|description= | |description= | ||
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. | 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= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
lower(str) | |||
</syntaxhighlight> | |||
</ | <syntaxhighlight lang="mtmacro" line> | ||
lower(str, numChars) | |||
</syntaxhighlight> | |||
|example= | |example= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r: lower("This Is a Test")] | [r: lower("This Is a Test")] | ||
[r: lower("This Is a Test", 1)] | [r: lower("This Is a Test", 1)] | ||
</ | </syntaxhighlight> | ||
Returns | Returns | ||
this is a test | this is a test |
Latest revision as of 23:59, 15 March 2023
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 testthis Is a Test