Help for this page

Select Code to Download


  1. or download this
    @$row_data{groups} = grep{ $_->{whatever} == $foo } @$row_data{groups}
    + ;
    
  2. or download this
    for( qw/groups fields/ ){
      my $aref = $row_data{$_};
      @$aref = grep{ $_->{whatever} == $foo } @$aref;
    }