Determines the number of elements in a list.
Integer; the number of elements in a list.
ListLen(list [, delimiters ])
ListAppend, ListDeleteAt, ListInsertAt, ListPrepend
ColdFusion ignores empty list elements; thus, the list "a,b,c,,,d" has four elements.
Here are some examples of ListLen processing:
<h3>ListLen Example</h3> <!--- Find a list of users who wrote messages ---> <cfquery name = "GetMessageUser" datasource = "cfsnippets"> SELECT Username, Subject, Posted FROM Messages </cfquery> <cfset temp = ValueList(GetMessageUser.Username)> <!--- loop through the list and show it with ListGetAt ---> <h3>This is a list of usernames who have posted messages <cfoutput>#ListLen(temp)#</cfoutput> users.</h3> <ul> <cfloop From = "1" TO = "#ListLen(temp)#" INDEX = "Counter"> <cfoutput><li>Username #Counter#: #ListGetAt(temp, Counter)#</cfoutput> </cfloop> </ul>
ColdFusion 9 | ColdFusion 8 | ColdFusion MX 7 | ColdFusion MX 6.1 | ColdFusion MX | Forums | Developer Center | Bug Reporting
Version 6
Comments are no longer accepted for ColdFusion MX. ColdFusion 8 is the current version.
Send me an e-mail when comments are added to this page | Comment Report
Current page: http://livedocs.adobe.com/coldfusion/6/CFML_Reference/functions-pt215.htm