I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2010-02-25 23:17:30.014779-08 by pascucci
TableExtract - parsing html tables
Good Evening,

Test URL (where I get my html from for this test)
$url = 'http://www.mojotoad.com/sisk/projects/HTML-TableExtract/tables.html';

... some code
my $te = HTML::TableExtract->new(headers => [qw(Right Left)]); $te->parse(chomp($html_code)); print "Start, there are " . $te->tables . " tables.\n";

... more code

I've tried a few different things but my print line shows that there are 0 tables found when I know that there are many!

Does anyone have a suggestion?

Thanks.

GP
Direct Responses: Write a response