in reply to Re: Re: stripping an array
in thread stripping an array

But you're wrong. :-)
my @arr3 = @foo{@arr1};

And if you don't mind very short but somewhat dirty, you can do this:
my %foo = map{/,/;$`,$'} @arr2;

jdporter
The 6th Rule of Perl Club is -- There is no Rule #6.