in reply to Any pure-perl html to text? (Or: missing a perl equivalent to 'lynx -dump')
If you're not already using WWW::Mechanize for your scraping, i highly recommend it (note it uses LWP underneath)..my $mech = WWW::Mechanize->new(); $mech->get('http://example.com'); print $mech->content(format => 'text');
|
---|
Replies are listed 'Best First'. | |
---|---|
A reply falls below the community's threshold of quality. You may see it by logging in. |