
Jasmine
Administrator
Jan 19, 2001, 3:11 PM
Post #1 of 1
(1017 views)
|
|
How do I find the first array element for which a
|
Can't Post
|
|
(From the Perl FAQ) How do I find the first array element for which a condition is true? 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 $found_index has what you want.
|