Actually when I output the results from the external file all the lines 
run-in to eachother. I placed the carriage return in my output to read it 
better.


>From: Stephen Moretti <[EMAIL PROTECTED]>
>Reply-To: [email protected]
>To: CF-Newbie <[email protected]>
>Subject: Re: Manipulating variable string
>Date: Wed, 11 May 2005 14:07:46 +0100
>
>Ed,
>
>I'm assuming that your in your log file each entry is delimited by a
>linefeed (chr(10)) and each column in each row is delmited by a TAB
>character (chr(9))
>
>If thats the case, then :
>
><table>
><cfloop index="listrow" list="#logfile#" delimiter="#chr(10)#">
>       <tr>
>       <cfloop index="thiscol" list="#listrow#" delimiter="#chr(9)#">
>               <td><cfoutput>#thiscol#</cfoutput></td>
>       </cfloop>
>       </tr>
></cfloop>
></table>
>
>will create a list out of your log file using the LF as a row delimiter
>and then loop throw each row splitting the row into columns using the
>TAB delimiter.
>
>Regards
>
>Stephen
>
>
>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:15:919
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/15
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:15
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to