document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <cfset arr = listToArray("1,2,3,4,5") />
  2. <cfoutput>
  3.   Displaying array values.<br/>
  4. </cfoutput>
  5. <cfloop index="loopcount" from=1 to=5>
  6.     <cfoutput>
  7.         #arr[loopcount]#<br>
  8.     </cfoutput>
  9. </cfloop>
  10. <cfoutput>
  11.   Done.<br/>
  12. </cfoutput>
');