Help for this page

Select Code to Download


  1. or download this
        foreach (@array) {
            push @other, $_ if some_condition;
        }
    
  2. or download this
        @other = grep {some_condition} @array;