in reply to A mystery?
spooky...
Cheers Rolf xD
( addicted to the Perl Programming Language)
I'm no big packerista, but what is split 'C*' supposed to do?
my @matrixX10 = map[ split 'C*', $_ ], unpack '(a10)*', $buffer
did you intend another unpack ?
DB<105> map [ unpack 'C*', $_] ,unpack '(a10)*', '12345678901234567 +890' => ( [49, 50, 51, 52, 53, 54, 55, 56, 57, 48], [49, 50, 51, 52, 53, 54, 55, 56, 57, 48], )
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: A mystery? (s/split/unpack/)
by BrowserUk (Patriarch) on Jul 15, 2013 at 23:03 UTC |