listContains
(Redirected from ListContains)
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 thevalue
.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", "#")]
2