Determines the index of the first list element that contains a specified substring.
Index of the first list element that contains substring, regardless of case. If not found, returns zero.
History
ColdFusion (2018 Release): Introduced named parameters.
ListContainsNoCase(list, substring [, delimiters, includeEmptyFields ])
ListContains, ListFindNoCase; Lists in Data types- Developing guide in the Developing ColdFusion Applications
Parameter |
Description |
---|---|
includeEmptyFields | Optional. Set to yes to include empty values. |
list |
A list or a variable that contains one. |
substring |
A string or a variable that contains one. The search is case-insensitive. |
delimiters |
A string or a variable that contains one. Characters that separate list elements. The default value is comma. If this parameter contains more than one character, ColdFusion processes each occurrence of each character as a delimiter. |
ColdFusion ignores empty list elements; thus, the list "a,b,c,,,d" has four elements.
<cfscript> myList="Tokyo,Bangkok,bangkok,bangKok,Jakarta,Manila,Bangalore,Shanghai"; WriteOutput(ListContainsNoCase(myList,"bangkok")); //Returns 2 as the first instance of Bangkok irrespective of case </cfscript>
Output
2
Sign in to your account