http://www.perlmonks.org?node_id=502629


in reply to Get Web Page

Hi Kanishk

WWW:Mechanize will do this work.

use strict; use WWW::Mechanize; my $mech=WWW::Mechanize->new(); $mech->get('http://www.perlmonks.com'); $mech->success() || die "$mech->status()"; print $mech->content();

And also take a look at this link Extract Web Page

Thanks,
Gopal.R