in reply to Re: •Re: prepend string to entire array
in thread prepend string to entire array

I'm in a good mood.

@array = qw(A B C D E F G); @array1 = qw(1 2 3 4 5 6 7); @array2 = map { my $c=$_;map "$_$c", @array } @array1;

Hope this helps.

antirice    
The first rule of Perl club is - use Perl
The
ith rule of Perl club is - follow rule i - 1 for i > 1