You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
421 B
Perl

use LWP::Simple;
use HTML::LinkExtor;
$html = get("http://www.java2s.com");
$link_extor = HTML::LinkExtor->new(\&handle_links);
$link_extor->parse($html);
sub handle_links
{
($tag, %links) = @_;
if ($tag eq 'a') {
foreach $key (keys %links) {
if ($key eq 'href') {
print "Found a hyperlink to $links{$key}.\n";
}
}
}
}