RPTools

Personal tools
From MapToolDoc

listContains

Contents

listContains() Function

Introduced in version 1.3b42

Returns the number of occurrences of a value in a String List.

Usage

  1. listContains(list, value)
  2. 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

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

Returns 3

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

Returns 2

See Also

listFind()