Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I appreaciate any assistancemy $te = new HTML::TableExtract(); $te->parse($string); foreach my $ts ($te->table_states) { foreach my $row ($ts->rows) { foreach my $col (@$row){ print $col . "\n" ;}}}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTML:tableextract
by mojotoad (Monsignor) on Jan 29, 2003 at 21:06 UTC |