How to copy the elements of a List to an Array in ColdFusion

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>






More ColdFusion examples