Counts instances of a specified value in a list. The search is case-insensitive.
The number of instances of value in the list.
ListValueCountNoCase(list, value [, delimiters ])
ListValueCount; Lists in Data types- Developing guide in the Developing ColdFusion Applications
Parameter |
Description |
|---|---|
list |
A list or a variable that contains one. |
value |
String or number, or a variable that contains one. Item for which to search. 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. |
<cfscript>
myString="Foo|bar|foo,bar|lorem|ipsum|foo|foo"
writeOutput("The count of foo is: " & ListValueCountNoCase(myString,"foo","|"))
</cfscript>
Output
The count of foo is: 3
Sign in to your account