Rick,
 
My apologies.  Apparently Matt has done this particular code massaging before.  Use his example, it is far easier and faster than my own impromtu solution.
 
Ryan
 
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jones, Matt
Sent: Monday, June 11, 2001 2:55 PM
To: '[EMAIL PROTECTED]'
Subject: RE: [KCFusion] Uploading CSV

<cfset EndLine = Chr(10) & Chr(13)>
<cfset listDelim = ",">
 
<cfloop list="#RawFile#" index="CurData" delimiters="#EndLine#">
 
    <!--- Name could be accessed by #listGetat(CurData,1,listDelim)# --->
    <!--- Faxnumber could be accessed by #listGetat(CurData,2,listDelim)# --->
 
    <!--- Put your insert query here --->
 
</cfloop>

Reply via email to