Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ListGetAt - how many parameters? 1

Status
Not open for further replies.

leadman

Programmer
Jun 11, 2001
177
US
Hi all,
Im looking at a working template that includes the following:

ListGetAt(CFHTTP.FileContent, 2, "%"),

Int the CF book it says that ListGetAt takes only two parameters - the list and the element. Does anyone know what the third one here is for? (the "%")
 
Yes, it specifies the list delimiter. The default is ",".

ListGetAt

Returns the element at a given position.

Syntax
ListGetAt(list, position [, delimiters ])

list
List whose element is being retrieved.

position
Positive integer indicating the position of the element being retrieved.

delimiters
Set of delimiters used in list.




- tleish
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top