Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Beloved Monks,
I am a newbie so please forgive my question if it seems simple. I'm using HTML:TableExtract to parse a table that is filled with links. When I parse it I get the name displayed when viewing the page with a browser rather than the link itself like I would like. Here is my code.
my $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" ;}}}
I appreaciate any assistance

Replies are listed 'Best First'.
Re: HTML:tableextract
by mojotoad (Monsignor) on Jan 29, 2003 at 21:06 UTC