Hi, I'm running this code -
use strict;
use warnings;
use HTML::Parse;
use HTML::FormatText;
use LWP::Simple;
my $url = "http://www.perlmonks.org";
my $html = get($url);
defined $html or die "Can't fetch HTML from: ",$url;
my $ascii = HTML::FormatText->new->format(parse_html($html));
print $ascii;
It gives me the following output -
[TABLE NOT SHOWN][TABLE NOT SHOWN][TABLE NOT SHOWN][TABLE NOT SHOWN]
PerlMonks lovingly hand-crafted by Tim Vroom.
PerlMonks went on a couple dates, and then decided to shack up with
The Perl Foundation.
Wonderful Web Servers and Bandwidth Generously Provided by pair
Networks
I'm running the code on Mac OS X; Perl, v5.8.8 built for darwin-thread-multi-2level (with 4 registered patches).
Can anyone suggest what I might do to extract the raw text from a website since this method is clearly not working for me. I will be running this code on a server, linux hopefully, when I get up and running.
Thanks!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.