Thread verknuepftes Pattern matching: Pattern nach UND NICHT matchen (16 answers)
Opened by nikster77 at 2006-05-21 19:28

nikster77
 2006-05-21 20:33
#66395 #66395
User since
2006-02-08
26 Artikel
BenutzerIn
[default_avatar]
Danke euch.
Aber irgendwie tut's bei (mal wieder) nicht...
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
sub check_text {
open my $fh, "<", "/home/nikster/supertext" or die "Unable to read from supertext : $!";
while (1) {
for(my $i = 0; $i <= $#lines; $i++) {
if $_ (m/$lines[$i]->[0]|$lines[$i]->[5]|$lines[$i]->[8]/ && $_ !~ m/"(F)"/) {
print "alles scheint OK zu sein!\n";
}
}
}
}
close $fh;

View full thread verknuepftes Pattern matching: Pattern nach UND NICHT matchen