Hi Ken,

<<Ken>>

Simple question (hopefully).  I'm reading from a very large quoted-comma
delimited text file and writing to a quoted-comma delimited text file.
I want to skip over the forty-first element and continue sending the
rest of the record to the outbound file.  This would be repeated for
every record in the inbound file (over three hundred thousand).
 
Inbound: open/direct/lines %InboundTextFile.txt
Outbound: open/direct      %OutboundTextFile.txt
 
Data: copy/part Inbound [find/skip {","}  ** 41st element - part I don't
know how to do ** ]
 
Append Outbound Data
 
Any help would be appreciated!
 
<</Ken>>

How about:

    line: first inbound
    parse/all line [41 [thru #","] copy data to end]

etc.

-L


-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to