in reply to Basic transformations

for your example it is enough to just do
while (<SOMEFILE>) { @bytes = split //; print join ":", @bytes; }

Replies are listed 'Best First'.
Re^2: Basic transformations
by JavaFan (Canon) on Nov 29, 2010 at 14:32 UTC
    Please try your suggestion with an example. It's very wrong.