#! /usr/bin/perl
use strict;
use warnings;
use HTML::TokeParser::Simple;
my $p = HTML::TokeParser::Simple->new(*DATA)
or die qq{cant parse html: $!\n};
my @text;
while (my $t = $p->get_token){
next unless $t->is_text;
my $txt = $t->as_is;
if ($txt =~ /Hit/ .. $txt =~ /Listed since/){
for ($txt){
s/^\s+//;
s/\s+$//;
}
next unless $txt;
push @text, $txt;
}
}
print qq{$_\n} for @text;
__DATA__
Adress: Paris, 3ne Boulevard Saint Lo
Telefon:048 + 334555664 , Fax: 048 + 334555667
MyWeb-Nummer: 222237520031111
Webmaster:
master
Listed since: 20.08.2002