Determines the index of the first list element that contains a specified substring.
listContainsNoCase(list, substring [, delimiters])
returns numeric
Name | Type | Required | Default | Description |
---|---|---|---|---|
list | string | Yes | ||
substring | string | Yes | ||
delimiters | string | No | , |
Return the first instance position of ‘foo’, irrespective of case
listContainsNoCase("sheep,goat,Foo,bar,foo", "foo")