Help for this page
@array = ( [ 1, 2 ], [ 3, 4 ], [ 2, 5 ], );
$temp = 3; $temp_1 = 4; @matching_rows = grep { $_->[0] == $temp && $_->[1] == $temp_1 } @arra +y;