Help for this page

Select Code to Download


  1. or download this
    my $search = 'foo';
    my ($where) = grep { $question[$_] eq $search } 0 .. $#question;
    
  2. or download this
    # once:
    my %lookup;
    ...
    # many times:
    my $search = 'boo';
    $where = $lookup{$search};