Removing the Comma delimiter with something else in a File download
I have a file whcih gets downloaded and then read and inserted into the database. The problem is when I read the belwo records below which should be 3 indexes, it breaks the index with the comma delimted file into 5 indexes.
"","","Wonderful Expanded Cape, With 4/5 Bedrooms 2 Full Bths. Eik, Lr,Great Place, New"
How can I replace the comma delimited in the file when downloaded and the use that delimiter in my ListToArray .
<cfloop index="ind" list="#readlistings#" delimiters="#chr(13)##chr(10)#">
<cfset i=ListToArray(ind, ",", true) />
<cfoutput>
#i[4]#
<br><br>
</cfoutput>
</cfloop>
