length: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Applied Template:MacroFunction) |
No edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{MacroFunction | {{MacroFunction | ||
|name=length | |name=length | ||
|version=1.3b48 | |||
|description= | |description= | ||
Returns the length of a string. | Returns the length of a string. | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
length(str) | |||
</ | </syntaxhighlight> | ||
|example= | |example= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r, length("abcde")] | [r, length("abcde")] | ||
</ | </syntaxhighlight> | ||
Returns 5 | Returns 5 | ||
}} | }} | ||
[[Category:String Function]] | [[Category:String Function]] |
Latest revision as of 17:43, 15 March 2023
length() Function
• Introduced in version 1.3b48
Returns the length of a string.
Usage
length(str)
Example
[r, length("abcde")]