http://qs321.pair.com?node_id=340085

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Hi monks, i need a better way to do:
my ($a, $b, $c, $d, $e, $f, $g, $h) = splice(@array, 0, 8); $b =~ s/\.//g; $c =~ s/\.//g; $d =~ s/\.//g; $e =~ s/\.//g; $f =~ s/\.//g; $g =~ s/\.//g;
any hints?