in reply to html tag matching confusion
Its a very easy to use and powerful tool. Check it out. (Err, and its useful even if there arent column headers.)use HTML::TableExtract; $te = HTML::TableExtract->new( headers => [qw(Date Price Cost)] ); $te->parse($html_string); # Examine all matching tables foreach $ts ($te->table_states) { print "Table (", join(',', $ts->coords), "):\n"; foreach $row ($ts->rows) { print join(',', @$row), "\n"; } }
Yves / DeMerphq
--
Have you registered your Name Space?
|
|---|