|
|
| go ahead... be a heretic | |
| PerlMonks |
How do I find the first array element for which a condition is true?by faq_monk (Initiate) |
| on Oct 08, 1999 at 00:20 UTC ( #612=perlfaq nodetype: print w/ replies, xml ) | Need Help?? |
|
Current Perl documentation can be found at perldoc.perl.org. Here is our local, out-dated (pre-5.6) version: You can use this if you care about the index:
for ($i=0; $i < @array; $i++) {
if ($array[$i] eq "Waldo") {
$found_index = $i;
last;
}
}
Now
|
|