in reply to Howto convert hex to string
#!/usr/bin/perl -wl my @nums = qw(84 67 49 67 83 50 79); my @chars = map {chr} @nums; print join '', @chars; __END__ Prints: TC1CS2O
If the numbers were in hex you could convert them with hex:
my @chars = map {chr hex} @nums;
--
John.
|
|---|