Whatever message this page gives is out now! Go check it out!

ListFilter

Last update:
May 18, 2026

Description

Used to filter the elements in list .

Returns

A new list
Category

Syntax

listFilter(list,filter(delimiters){return true|false;});

See also

Other list functions.

History

ColdFusion (2018 release): Introduced named parameters.
ColdFusion 10: Added this function.

Parameters

Parameter
Description
list
Name of the list object.
filter
Inline function executed for each element in the list. Returns true if the list element has to be included in the resultant list.
delimiters
LIst element being accessed.

Example

<cfscript>
       myList="1,2,3,4,5,6,7,8,9";
       myFilter=ListFilter(myList,function(num){
             return num>5;
       });
       WriteOutput(myFilter); //Returns a list of all numbers greater than 5
</cfscript>
Output
6,7,8,9

Share this page

Was this page helpful?
We're glad. Tell us how this page helped.
We're sorry. Can you tell us what didn't work for you?
Thank you for your feedback. Your response will help improve this page.

On this page