lower: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Macros:Functions:lower moved to lower) |
Verisimilar (talk | contribs) m (Added version.) |
||
Line 1: | Line 1: | ||
{{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. | ||
Line 6: | Line 7: | ||
|usage= | |usage= | ||
<source lang="mtmacro" line> | <source lang="mtmacro" line> | ||
lower(str) | |||
</source> | |||
<source lang="mtmacro" line> | |||
lower(str, numChars) | |||
</source> | </source> | ||
Revision as of 11:37, 10 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
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