in reply to Problem Parsing with HTML::TableExtract

try (un-tested):
my @all_tables = $te->table_states; my @all_rows = @{ $all_tables[0]->rows }; print Dumper $all_rows[-1];
updated. meant table_states()

Replies are listed 'Best First'.
Re^2: Problem Parsing with HTML::TableExtract
by monkfan (Curate) on Dec 07, 2005 at 07:11 UTC
    Hi,
    Thanks for the reply. But:
    $te->table_stats;
    Doesn't seem to exist as a method in the module.
    Then, I tried:
    my @all_tables = $te->table_states(0,0);
    Also doesn't do the job.

    Regards,
    Edward