August 2003
Intermediate to advanced
1140 pages
68h 45m
English
ListGetAt
ListGetAt(list, position [, delimiters])Returns the list element specified by
position. An optional delimiter can be
specified if the list is delimited with a character other than the
comma (the default). Note that the ListGetAt( )
function currently treats successive instances of the same delimiter
as a single delimiter. Here’s an example that
retrieves the third element of the list:
<cfset MyList = "Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday"> <cfoutput> <b>List:</b> #MyList#<br> <b>Third Element:</b> #ListGetAt(MyList, 3)# </cfoutput>