in reply to Re: Fetching Web Page and covert to text
in thread Fetching Web Page and covert to text
use strict; use warnings; use LWP::Simple; use HTML::TreeBuilder; use HTML::FormatText; print "Opening the URL"; my $URL=get("http://www.yahoo.com/") || die "Couldn't fetch page"; my $Format=HTML::FormatText->new; my $TreeBuilder=HTML::TreeBuilder->new; $TreeBuilder->parse($URL); my $Parsed=$Format->format($TreeBuilder); open FILE_OUT , '>D:\Profiles\in2228c\Desktop\info.txt' || die "No suc +h file"; print FILE_OUT "$Parsed"; close FILE_OUT; exit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Fetching Web Page and covert to text
by apl (Monsignor) on Jul 17, 2009 at 13:03 UTC |