in reply to Re^4: grep and dereferencing an array of arrays
in thread grep and dereferencing an array of arrays
Ok, that puts some light on your problem. This may be your solution:
#!/usr/bin/env perl use strict; use warnings; use 5.010; use Data::Dumper; my $choices = [ [ 'a', 'W', 'interupt', ], [ 'b', 'R', 'interrupt', ], [ 'c', 'W', 'innterupt', ], [ 'd', 'W', 'intterupt', ] ]; my $answer = 'd'; # As we know that the answer matches only one choice # and we have exactly one matching answer. my $chosen_answer = (grep { $_->[0] eq $answer } @$choices)[0]; say Dumper($chosen_answer);
McA
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: grep and dereferencing an array of arrays
by choroba (Cardinal) on Sep 06, 2013 at 21:04 UTC | |
by McA (Priest) on Sep 06, 2013 at 21:12 UTC |