Help with Structure in array
I need to process a tab delimited list and I'm able to put the data into an array. See the image of the array below:
Now that the list is separated into 5 array elements, each element is a list by itself.
How can I create a structure for the list within each array element so I will have an Array with 5 element and each element contain a structure with keys and values???
To create the above array I simply use :
<cffile action="READ" file="#FeedPath##FileName#" variable="MyFile">
<cfset MyArray = listtoarray(MyFile,"#chr(13)##chr(10)#")>
Please help!
