Help for this page

Select Code to Download


  1. or download this
    my @array = (
         {x => 1,
    ...
          z => 6},
       #etc
    );
    
  2. or download this
    grep {$_->{x} == 4 } @array;
    
  3. or download this
    my @newarray = grep {$_->{x} == 4 } @array;