cafaro has asked for the wisdom of the Perl Monks concerning the following question:
$mech->get($url); $content = $mech->content();
$te = HTML::TableExtract->new(depth => 0); $te->parse($content); $te->first_table_found; print $te->cell(2,2);
# Error I receive: # Can't locate object method "cell" via package "HTML::TableExtract"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTML::TableExtract (parse table column from an HTML page)
by erroneousBollock (Curate) on Oct 07, 2007 at 11:15 UTC | |
by cafaro (Novice) on Oct 07, 2007 at 11:23 UTC | |
by erroneousBollock (Curate) on Oct 07, 2007 at 11:25 UTC | |
by cafaro (Novice) on Oct 07, 2007 at 11:37 UTC | |
by erroneousBollock (Curate) on Oct 07, 2007 at 11:40 UTC | |
| |
by Not_a_Number (Prior) on Oct 07, 2007 at 12:40 UTC | |
|