August 2003
Intermediate to advanced
1140 pages
68h 45m
English
ListLen
ListLen(list [, delimiters])Returns the number of elements in the specified list. An optional delimiter can be specified if the list is delimited with a character other than the comma (the default). Example:
<cfset MyList = "Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday"> <cfoutput> <b>List:</b> #MyList#<br> <b>Number of elements:</b> #ListLen(MyList)# </cfoutput>