ListToArray() - copy the elements of a List to an Array
ListToArray.cfm
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ListToArray function example: how to copy the elements of a List to an Array</title>
</head>
<body>
<h2 style="color:Green">ListToArray Function Example</h2>
<cfset ColorList="Brown,BurlyWood,CadetBlue">
Color List:
<cfdump var="#ColorList#">
<br /><br />
<cfset ColorArray=ListToArray(ColorList,",")>
<cfdump var="#ColorArray#" label="Color Array[after convert]">
</body>
</html>
- ArrayInsertAt() - insert array element at specific position
- ArraySort() - sort array elements
- ArraySum() - get sum of values in an array
- ArraySwap() - swap array values of an array at specified positions
- ArrayToList() - convert an Array to a List
- ArrayNew() - three dimension array
- ArrayNew() - two dimension array
- cfdump - dump an array