Macromedia coldfusion 4.5-cfml language reference User Manual

Page of 608
410
CFML Language Reference 
ListContains
Returns the index of the first item that contains the specified substring. The search is 
case-sensitive. If the substring is not found in any of the list items, it returns zero (0).
See also 
ListContainsNoCase
 and 
ListFind
.
Syntax
ListContains(
list, substring [, delimiters ])
list
List being searched.
substring
String being sought in elements of list.
delimiters
Set of delimiters used in list.
Examples
<!---------------------------------------------------------------------- 
This example shows differences between ListContains and ListFind
----------------------------------------------------------------------->
<HTML>
<HEAD>
<TITLE>ListContains</TITLE>
</HEAD>
<BODY>
<!----------------------------------------------------------------------
Create a list composed of the items one, two, three.
----------------------------------------------------------------------->
<CFSET aList="one">
<CFSET aList=ListAppend(aList, "two")>
<CFSET aList=ListAppend(aList, "three")>
<P>
Here is the list: <B><CFOUTPUT>#aList#</CFOUTPUT></B>
<P>
ListContains checks for the existence of a substring "wo" in the items in 
the list.
<BR>ListContains<BR>
<CFOUTPUT>
The substring "wo" is in <B>Item #ListContains(aList, "wo")#</B> of the 
list.
</CFOUTPUT>
<P>
ListFind cannot check for substrings within items; therefore, in the 
following code where ListFind in used in place of ListContains, it will 
not find the substring "wo" in the list.
<BR>ListFind<BR>
<CFOUTPUT>
The substring "wo" is in <b>Item #ListFind(aList, "wo")#</b> of the list.
</CFOUTPUT>