|
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 |