User Guide
424 CFML Language Reference
<CFSET temp= ArrayAppend(myArray, "#FirstName# #LastName#")>
</CFLOOP>
<!--- sort that array descending alphabetically --->
<CFSET myAlphaArray = ArraySort(myArray, "textnocase")>
<!--- show the resulting array as a list --->
<CFSET myList=ArrayToList(myArray, ",")>
<CFOUTPUT>
<P>The contents of the unqualified list are as follows:</P>
#myList#
</CFOUTPUT>
<!--- show the resulting alphabetized array as a qualified
list with single quotes around each full name. --->
<CFSET qualifiedList1=ListQualify(myList,"’",",","CHAR")>
<!--- output the array as a list --->
<CFOUTPUT>
<P>The contents of the qualified list are as follows:</P>
<P>#qualifiedList1#</P>
</CFOUTPUT>
<!--- show the resulting alphabetized array as a qualified
list with quotation marks around each full name. Note that
we use " to denote quotation marks because the
quotation mark character is a control character. --->
<CFSET qualifiedList2=ListQualify(myList,""",",","CHAR")>
<!--- output the array as a list --->
<CFOUTPUT>
<P>The contents of the second qualified list are as follows:</P>
<P>#qualifiedList2#</P>
</CFOUTPUT>
</BODY>
</HTML>