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

[REBOL] Working with Binary conversions

From: ptretter::charter::net at: 1-Dec-2001 10:57

I thought I would pass this on if you ever trying to work with binary data and need it in its current state without conversion and need to get at it as a string. Try this: data: form to-binary "trim is really cool" new-data: trim/with data "{}#^/" now you can traverse the series of data much easier. with for example:
>> new-data/1
== #"7"
>> new-data/2
== #"4" Paul Tretter