Hi, I have a very simple question:
I want to parse a html page having table format into
simple text. I tried the following code, but
it won't parse the table,but give me:
[TABLE NOT SHOWN]
How can I parse html page which has tables?
Thank you for your help.
Lily
==============
#!/usr/bin/perl
use HTML::Parse;
$html = qq{
| This is html file. will be parsed as text. |
}; print parse_html($html)->format; exit;