Help for this page

Select Code to Download


  1. or download this
    my $url = "http://www.nukeforums.com/forums/viewforum.php?f=17";
    my $ua = LWP::RobotUA->new;
    ...
    foreach my $page (@links) {
        ...
    }
    
  2. or download this
    my $ua = LWP::RobotUA->new;
    my $lp = HTML::LinkExtor->new(\&wanted_links);
    ...
            ...
        }
    }
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    ...
        my $base = $response->base;
        return [ map { url($_, $base)->abs } @links ];
    }