August 2001
Intermediate to advanced
976 pages
38h 8m
English
ListAppend
ListAppend(list, element[,delimiters])
Appends element to the end of
list. An optional delimiter can be
specified if the list is delimited with a character other than the
comma (the default). Here’s an example that appends an element
to the end of a list:
<CFSET MyList = "Monday,Tuesday,Wednesday,Thursday,Friday,Saturday"> <CFSET MyAppendedList = ListAppend(MyList, 'Sunday')> <CFOUTPUT> <B>List:</B> #MyList#<BR> <B>Appended List:</B> #MyAppendedList# </CFOUTPUT>
Read now
Unlock full access