string.listContainsNoCase()
Determines the index of the first list element that contains a specified substring.
string.listContainsNoCase( substring=string, delimiters=string, includeEmptyFields=boolean, multiCharacterDelimiter=boolean )
Returns: Number
| Argument | Description |
|---|---|
|
substring
string,
required
|
edit
the string to search in the list |
|
delimiters
string,
optional
|
edit
Characters that separate list elements. The default value is comma. Alias: delimiter |
|
includeEmptyFields
boolean,
optional
|
edit
if set to true, empty values are included as well |
|
multiCharacterDelimiter
boolean,
optional
|
edit
specifying whether the delimiters parameter specifies a multi-character delimiter. If this parameter is true, the delimiters parameter must specify a single delimiter consisting of multiple characters. This parameter enables the ListToArray function to convert a list such as the following to an array of color names: red:|orange:|yellow:|green:|blue:|indigo:|violet. |
Examples
edit list = "I,love,lucee";
writedump(list.ListContainsNoCase("LUCEE"));
writeoutput("<br>");
listOne = "lucee@core@dev";
writedump(listOne.ListContainsNoCase("CORE","@"));