Name

ListGetAt

Synopsis

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>

Get Programming ColdFusion now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.