Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
      my ($target, @array) = @_;
      grep {$array[$_] eq $target} (0 .. @array - 1)
    }
    
  2. or download this
    2,4