in reply to Re^6: HTML Table to MYSQL DB
in thread HTML Table to MYSQL DB
use warnings; use strict; use HTML::TableExtract; my $te = HTML::TableExtract->new(); $te->parse_file('935413.html'); foreach my $ts ($te->tables) { foreach my $row ($te->rows) { print join(',', @$row),"\n"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: HTML Table to MYSQL DB
by Fiddler (Initiate) on Nov 10, 2011 at 13:50 UTC | |
by choroba (Cardinal) on Nov 10, 2011 at 22:17 UTC |