in reply to Splitting a string in Perl
You're going to have a hard time using split to split this line (what if the hex is 20 20 20 - that'll give 3 spaces in ASCII, or what if the length of the data isn't a multiple of nine). You'll be better of using unpack.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Splitting a string in Perl
by kyle (Abbot) on Apr 26, 2008 at 19:07 UTC |