ListContains()

Determines if the substring is within the list, returning the list index of where the item was found; 0 if not found

Usage

NUMERIC = ListContains( list, substring, delimiter, exact )
Argument Summary
list list
substring substring
delimiter delimiter - default comma (,) [optional]
exact exact match flag - default false [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

ListContains(
   list=?, 
   substring=?, 
   delimiter=?, 
   exact=?
);

Supports passing parameters as a structure using ArgumentCollection:

ListContains( ArgumentCollection={
   list : ?, 
   substring : ?, 
   delimiter : ?, 
   exact : ?
} );