Thread HTML::LinkExtor: mein Testscript haut nicht hin :( (9 answers)
Opened by RPerl at 2007-07-01 14:50

renee
 2007-07-01 16:47
#78095 #78095
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Du musst parse anstatt parse_file nehmen:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl

use strict;
use warnings;
use HTML::LinkExtor;
use LWP::Simple;
use Data::Dumper;

my $url = 'http://www.perl-community.de';
my $content = get( $url );

my $link_extor = HTML::LinkExtor->new;
$link_extor->parse( $content );

my @links = $link_extor->links;

for my $link ( @links ){
    print $link->[2],"\n";
}
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread HTML::LinkExtor: mein Testscript haut nicht hin :(