Help for this page

Select Code to Download


  1. or download this
    for my $i (0..$#array) {
      if ($array[$i] eq "joby") {
    ...
        last; # exit loop - only interested in the first match
      }
    }