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

[REBOL] Removing Items

From: kvince1:attbi at: 3-Jul-2002 9:45

Greetings, 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