Re: [Pharo-users] help needed regarding conversion of hex to binary

2017-09-12 Thread Sven Van Caekenberghe
ByteArray readHexFrom: #[ 0 1 2 3 4 5 6 7 8 9 10 ] hex. > On 12 Sep 2017, at 14:47, Ben Coman wrote: > > > > On Tue, Sep 12, 2017 at 2:55 AM, Casimiro de Almeida Barreto > wrote: > Is there a (easy and ready) way to convert hexa to binary. I mean, convert > data that was transformed > >

Re: [Pharo-users] help needed regarding conversion of hex to binary

2017-09-12 Thread Ben Coman
On Tue, Sep 12, 2017 at 2:55 AM, Casimiro de Almeida Barreto < casimiro.barr...@gmail.com> wrote: > Is there a (easy and ready) way to convert hexa to binary. I mean, convert > data that was transformed > > x := myData asByteArray hex. > > back to binary? > > > I thought I'd try what usually w

[Pharo-users] help needed regarding conversion of hex to binary

2017-09-11 Thread Casimiro de Almeida Barreto
Is there a (easy and ready) way to convert hexa to binary. I mean, convert data that was transformed     x := myData asByteArray hex. back to binary?