Thread Durchsuchen eines Arrays und Augabe des Indexes
(5 answers)
Opened by choff at 2011-10-11 11:40 2011-10-11T09:40:59 choff Dafür ist first_index gut geeignet: Code (perl): (dl
)
1 2 3 4 5 6 use List::MoreUtils qw(first_index); my @a; $a[8] = 3; my @b = (5 .. 27); my $idx = first_index {$_ =~ /$a[8]/} @b; print "Index $idx Inhalt $b[$idx]\n" if defined $idx; Gruß
GUIfreund |