2 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
open WORDS, "/srv/www/kukla/words.txt"
or die $!;
my @words = <WORDS>;
my $found = 0;
for my $word (@words) {
chomp $word;
$word = quotemeta($word);
$found = 1 if $msg =~ /$word/;
}
print "Ergebnis: $found\n";
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/perl
# vi:ts=4 sw=4 et:
use strict;
use warnings;
my $msg = "Mein Auto ist defekt, darum nutz ich das fahrrad.";
my @words = <DATA>;
# TODO: am Zeilenende darf kein normales Leerzeichen, Tab, o.ä. auftauchen
# man sollte \s auch durch die passenden Hex- oder Octal-Werte in einer Klasse ersetzen
if ( $words[0] =~ m/(\s+)$/ ) {
local $/=$1;
chomp @words;
}
my $found = 0;
for my $word (@words) {
$word = quotemeta($word);
$found = 1 if $msg =~ /$word/;
}
print "Ergebnis: $found\n";
__DATA__
Auto
Fahrrad
2 Einträge, 1 Seite |