Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Removing Items

From: lmecir::mbox::vol::cz at: 3-Jul-2002 22:50

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