Help for this page

Select Code to Download


  1. or download this
    my $i = 1;
    my @names = map {++$i > 6 ? $_ : () } @input2arr;
    
  2. or download this
    my $i = 1;
    my @names = grep {++$i > 6} @input2arr;