Leser: 30
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
#/usr/bin/perl -w use strict; use warnings; my %words; my @blacklist_entries = qw( insurance Sxx porn buy viagra ZENIC Möbelkauf Bußgeld Führerschein); sub checkSpam { my $line = shift; foreach my $spam_word (@blacklist_entries) { while ($line =~ /(?<=^|\b)\Q$spam_word\E(?=\b|$)/ig # Wort beginnt mit Zeilenanfang und/oder wird mit Wortbegrenzer getrennt ) { $words{$spam_word}++; } } } while (my $line = <DATA>) { checkSpam($line); } while (my ($key, $value) = each %words) { print "$key=$value\n"; } __DATA__ Das ist ein VIAGRA Text für Viagra. ViaGrA or Zenic BuY thS! $VIAGRA! ************ Möbelkauf ganz billig. $VIAGRA $VIAGRA: schnellstmöglich Bußgeld Führerschein neu! pOr N. POrn---------. :sxx: download porN. vIaGrH.
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 30 31 32 33 34 35 36 37
#/usr/bin/perl -w use strict; use warnings; use utf8; my %words; my @blacklist_entries = qw( insurance Sxx porn buy viagra ZENIC Möbelkauf Bußgeld Führerschein); my $regexp=join('|',map{qr/\Q$_\E/i}@blacklist_entries); $regexp=qr/(?<=^|\b)($regexp)(?=\b|$)/; while (my $line = <DATA>) { $words{lc($1)}++ while ($line =~/$regexp/gi); } while (my ($key, $value) = each %words) { print "$key=$value\n"; } __DATA__ Das ist ein VIAGRA Text für Viagra. ViaGrA or Zenic BuY thS! $VIAGRA! ************ Möbelkauf ganz billig. $VIAGRA $VIAGRA: schnellstmöglich Bußgeld Führerschein neu! pOr N. POrn---------. :sxx: download porN. vIaGrH.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
my %words; my @blacklist_entries = qw(insurance Sxx porn buy viagra ZENIC Möbelkauf Bußgeld Führerschein); my %rx_tab = map {$_ => qr:(^|\b)\Q$_\E(\b|$):} map {lc} @blacklist_entries; while (my $line = lc <DATA>) { study $line; foreach my $k (keys %rx_tab) { $words{$k}++ while ($line =~ /$rx_tab{$k}/g); } } while (my ($key, $value) = each %words) { print "$key=$value\n"; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# settings damit Umlaute den Wörtern zugeschlagen werden use locale; use POSIX qw(locale_h); setlocale(LC_CTYPE, "de_DE.ISO8859-1"); my %words; my @blacklist_entries = qw(insurance Sxx porn buy viagra ZENIC Möbelkauf Bußgeld Führerschein); my %lookup = map {lc($_) => 1} @blacklist_entries; while (my $line = lc <DATA>) { $words{$_}++ foreach grep {$lookup{$_}} split(/\W+/,$line); } while (my ($key, $value) = each %words) { print "$key=$value\n"; }