in reply to Basic transformations

Here is some code that should do what you looking for:

print pack 'c*', map {hex $_} qw(48 65 6c 6c 6f 2c 20 77 6f 72 6c 64 2 +1);

produces:

Hello, world!

Replies are listed 'Best First'.
Re^2: Basic transformations
by Anonymous Monk on Nov 29, 2010 at 20:28 UTC
    The map function is what I was missing. That works perfectly. Thank you.