ListValueCountNoCase

Description

Counts instances of a specified value in a list. The search is case-insensitive.

Returns

The number of instances of value in the list.

Category

List functions

Function syntax

ListValueCountNoCase(list, value [, delimiters ])

See also

ListValueCountLists in Data types- Developing guide in the Developing ColdFusion Applications

Parameters

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.

Example

<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

 Adobe

Get help faster and easier

New user?