in reply to int to ascii

Then there is always the simple array method:

my @var = ('','a'..'z'); print "$var[$_] " for (1,2,3,10);

Simple, but somewhat effective. Just don't forget to pad the array so the integers line up; otherwise you'll have to use $var[$_ - 1].

--
D a d d i o