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

[REBOL] Re: Odd behavior using copy/part?

From: al:bri:xtra at: 4-Jan-2001 22:03

> I have a function which reads the header of a binary file and extracts
certain bits for analysis.
> sync: copy/part header 12 > header: skip header 12 > ID: copy/part header 1 > header: skip header 1 > layer: copy/part header 2 > header: skip header 3
Easier might be: Sync: copy/part at Header 1 12 ID: copy/part at Header 13 1 Layer: copy/part at Header 15 2 and so on. I hope that helps! Andrew Martin Absolute Rebol... ICQ: 26227169 http://members.nbci.com/AndrewMartin/