listContains

From RPTools Wiki
Revision as of 03:11, 2 June 2009 by Verisimilar (talk | contribs) (Completed the article.)
Jump to navigation Jump to search

listContains() Function

Introduced in version 1.3b42
Returns the number of occurrences of a value in a String List.

Usage

listContains(list, value)
listContains(list, value, delim)

Parameters

  • list - The String List that is checked for occurrences of the value.
  • value - The value to search the String List for occurrences.
  • delim - The delimiter that separates the values in the String List; defaults to ",".

Examples

[r: listContains("a,b,c,a,b,a", "a")]

Returns 3

[h: MyStringList = "1#2#3#4#1#2#3#1#2"]
[r: listContains(MyStringList, "3", "#")]
Returns 2

See Also