Thread arrays vergleichen (23 answers)
Opened by blaise4714 at 2007-04-24 16:21

styx-cc
 2007-04-24 16:32
#76176 #76176
User since
2006-05-20
533 Artikel
BenutzerIn

user image
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl -w
use strict;

my @arrays1 = qw(w a f g b c j g r l);
my @arrays2 = qw(0 1 r 5 6 a l w f b g);

for my $cur (@arrays1) {
for (my $i=0; $i<scalar(@arrays2);$i++) {
print "$cur kommt an Stelle $i im 2. Array vor.\n" if ($cur eq $arrays2[$i]);
}
}


MfG
Pörl.

View full thread arrays vergleichen