my $html = qq{
Activity #Some ID
/Debit ID
5884763771275591
5884848131210540
}; my $te = HTML::TableExtract->new( headers => ['Some ID'] , decode => 0); $te->parse($html); eval { $te->rows; }; if ( $@ ) { print "No rows found\n"; } print Dumper($te->rows);