#!/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.
In reply to Re: Howto convert hex to string
by jmcnamara
in thread Howto convert hex to string
by bh_perl
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |