alright, that makes sense. is there anyway to do this with tr///, or would you have to do something like this:
@abc = 'a','b','c';
%alpha = ( 'a' => 1,
'b' => 2, #etc...
);
foreach $letter (@abc)
{
$num =~ s/$letter/$alpha{$letter}/;
push(@abc,$num)...