vote up 4 vote down star
3

I previously asked how to do this in Groovy. However, now I'm rewriting my app in Perl because of all the CPAN libraries.

If the page contained these links:

  <a href="http://www.google.com">Google</a>

  <a href="http://www.apple.com">Apple</a>

The output would be:
Google, http://www.google.com
Apple, http://www.apple.com

What is the best way to do this in Perl?

flag

8 Answers

vote up 18 vote down check

Please look at using the WWW::Mechanize module for this. It will fetch your web pages for you, and then give you easy-to-work with lists of URLs.

my $mech = WWW::Mechanize->new();
$mech->get( $some_url );
my @links = $mech->links();
for my $link ( @links ) {
    printf "%s, %s\n", $link->text, $link->url;
}

Pretty simple, and if you're looking to navigate to other URLs on that page, it's even simpler.

Mech is basically a browser in an object.

link|flag
I took the liberty of changing the print statement to include the link text, as requested by melling. – cjm Oct 31 '08 at 20:05
vote up 10 vote down

Have a look at HTML::LinkExtor, part of the HTML::Parser package.

link|flag
Unfortunately, HTML::LinkExtor can't give you the text inside the <a> tag, which he says he's interested in. It only tells you the tag name and its attributes. – cjm Oct 31 '08 at 19:39
vote up -3 vote down

Extending on Alexandre's: you can easily get pretty complicated with regexes, to handle <a> with varying cases, different attributes, different spacings, etc.:

use LWP::Simple;
$_ = get('http://www.google.com/');
while (m{
    < \s* a
       (?: \s+ [^\s<>]+ )*
        \s+ href=(["']?) ([^<>]*) \1
        (?: \s+ [^\s<>]+ )*
    \s* >
    ([^<>]*)
}gisx) {
    ($url, $text) = ($2, $3);
    print "link found: $url ($text)\n";
}

I voted up Sherm Pendley's better answer, though.

link|flag
While this isn't the best solution (it's not real HTML parsing), I don't think it's bad, per se... apparently the community disagrees with me. – ephemient Nov 1 '08 at 4:38
vote up 1 vote down

HTML is a structured markup language that has to be parsed to extract its meaning without errors. The module Sherm listed will parse the HTML and extract the links for you. Ad hoc regular expression-based solutions might be acceptable if you know that your inputs will always be formed the same way (don't forget attributes), but a parser is almost always the right answer for processing structured text.

link|flag
vote up 5 vote down

I like using pQuery for things like this...

use pQuery;

pQuery( 'http://www.perlbuzz.com' )->find( 'a' )->each(
    sub {
        say $_->innerHTML . q{, } . $_->getAttribute( 'href' );
    }
);

Also checkout this previous stackoverflow.com question Emulation of lex like functionality in Perl or Python for similar answers.

/I3az/

link|flag
vote up 1 vote down

Sherm recommended HTML::LinkExtor, which is almost what you want. Unfortunately, it can't return the text inside the <a> tag.

Andy recommended WWW::Mechanize. That's probably the best solution.

If you find that WWW::Mechanize isn't to your liking, try HTML::TreeBuilder. It will build a DOM-like tree out of the HTML, which you can then search for the links you want and extract any nearby content you want.

link|flag
vote up 2 vote down

Or consider enhancing HTML::LinkExtor to do what you want, and submitting the changes to the author.

link|flag
vote up 0 vote down

Another way to do this is to use XPath to query parsed HTML. It is needed in complex cases, like extract all links in div with specific class. Use HTML::TreeBuilder::XPath for this.

  my $tree=HTML::TreeBuilder::XPath->new_from_content($c);
  my $nodes=$tree->findnodes(q{//map[@name='map1']/area});
  while (my $node=$nodes->shift) {
    my $t=$node->attr('title');
  }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.