http://qs321.pair.com?node_id=867391


in reply to Table data

Hi there, Perlbeginner1. This works:

use HTML::TableExtract; my $te = HTML::TableExtract->new( attribs => { id => 'historicalTable' }, ); $te->parse_file(\*DATA); $te->first_table_found->dump(1);

Cheers,
Matt

edit: some non-pm context is here. recent post history is here.