Works well out of the box, extracting the text in table cells.
However, there's no way to extract additional HTML information from TD elements, for instance links or img src attributes. For that, use HTML::TableExtract.
this is a good module to retrive data in HTML table~~~
the following is a sample program to get weather forecast from
tw.weather.yahoo.com/tomorrow.html
and print the result to stdout.
use LWP::UserAgent;
use HTTP::Request::Common;
use HTML::TableParser;