[REBOL] Re: BUG in parse? - working with binaries
From: brett:codeconscious at: 6-Nov-2001 11:02
Hi
If you're going to parse binary you must use /all refinement on parse. If
you don't use /all refinement parse will define some whitespace characters
which are automatically matched. It has been enlightening to see your
example - I hadn't realised the effect on copy before of this. Thanks!
Here's a modified example:
chars: charset {123}
parse {1 2 3 a b c} [copy part-of-input some chars]
print mold part-of-input
Cheers,
Brett.