August 2001
Intermediate to advanced
976 pages
38h 8m
English
ListInsertAt
ListInsertAt(list, position, value[,delimiters])
Inserts value into list at the specified
position. An optional delimiter can be specified if the list is
delimited with a character other than the comma (the default). The
following example inserts a value into a list:
<CFSET MyList = "Monday,Tuesday,Thursday,Friday,Saturday,Sunday"> <CFSET MyNewList = ListInsertAt(MyList, 3, "Wednesday")> <CFOUTPUT> <B>Original List:</B> #MyList#<BR> <B>New List:</B> #MyNewList# </CFOUTPUT>
Read now
Unlock full access