Contents |
Returns the number of occurrences of a value in a String List.
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 ",".
[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