listCount: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
Line 4: Line 4:
===Usage===
===Usage===
<source lang="mtmacro" line>
<source lang="mtmacro" line>
[h: count = listCount(list, value)]
[h: count = listCount(list)]
[h: count = listCount(list, value, delim)]
[h: count = listCount(list, delim)]
</source>
</source>



Revision as of 16:13, 22 February 2009

Function listCount

Returns the number of items in a string list.

Usage

[h: count = listCount(list)]
[h: count = listCount(list, delim)]

If delim is not specified then the default value of ',' is used as the value separator in the string list

Example

[r: listCount("This, is, a, test")]

Returns 4

[r: listCount("This: is: a: test")]

Returns 4