Wie gesagt, das raussuchen und alles funktioniert problemlos.
Ich kanns mir ausgeben lassen und der zeigt alles wie erwartet an - bis auf die Zeile nach dem Regex..
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
46
47
48
49
50
#! /usr/bin/perl
use strict;
use warnings;
use Encode;
use HTML::Parser;
use LWP::UserAgent;
my @links;
my $url = "http://google.de/";
my $ua = LWP::UserAgent->new();
my $response = $ua->get($url);
my $inhalt = $response->decoded_content;
my $p = HTML::Parser->new();
$p->handler(start => \&start_handler,"self,tagname,attr");
$p->parse($inhalt);
foreach my $link (@links){
my $linkziel = $link->[0];
if (defined($linkziel)){
print $linkziel."\n";
if($linkziel =~ ("/http/i")){
print "Linktext: ",$link->[1],"\tURL: ",$link->[0],"\n";
}
}
}
sub start_handler{
my ($self, $tag, $attr) = @_;
return if($tag ne 'a');
my ($link) = $attr->{href};
my $text;
$self->handler(text => sub{$text = shift;},"dtext");
$self->handler(end => sub
{
my ($tag) = @_;
if ($tag eq 'a'){
push(@links,[$link,$text])
}
},"tagname");
}