Interesting, it appears that you can do something similar using the .split() java method and get similar results.
A bit of background: since CF is built on Java, it can take advantage of many of the underlying java methods and classes. According to Rupesh Kuman of Adobe (http://coldfused.blogspot.com/2007/01/extend-cf-native-objects-harnessing.html), a CF array is an implementation of java.util.List, so all the list methods are also available for CF arrays. One of the more useful ones is the .split() method. This takes a string and turns it into an array based on an arbitrary delimiter of 0 or more characters.
Here's what I did: set a list to be an 11 digit number, used the split method to create the array and then displayed the result.
<cfset testList = "12345678901" />
<cfset testArray = testList.split("") />
<cfset request.cfdumpinited = false />
<cfdump label="testArray" expand="true" var="#testArray#"/>
<cfabort />
If you run this, you see that you end up with a 12 item array with the first index item being empty. Just delete that one using ArrayDelete() or ArrayDeleteAt() and you should be good to go. This should work with all versions of ColdFusion since CFMX 6.