in reply to Scalar joining, concatenation, involving varying text

would something like this work?
my $a = "testA"; my $b = "testB"; my $c = "testC"; my %combined = ( $a => "a=$a", $b => "b=$b", $c => "c=$c" ); my $combined = join ' ', $combined{$a}, $combined{$b}, $combined{$c};


Ted
--
"That which we persist in doing becomes easier, not that the task itself has become easier, but that our ability to perform it has improved."
  --Ralph Waldo Emerson