kireol has asked for the wisdom of the Perl Monks concerning the following question:
$tes = new HTML::TableExtract(headers => [qw(Summer)]); $tes->parse($mech->content());
and then I'm trying to figure out how to grab the values....
----------------------------------------------foreach $ts ($tes->table_states) { foreach $row ($ts->rows) { print $row->[1],"999\n"; } }
----------------------------------------------Table (2,10): ^M + ^M $1,485.14^M ^M Table (2,13): ^M ^M $1,623.57^M ^M
20041210 Janitored by Corion: Put CODE tags around code
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Help with Variables
by gaal (Parson) on Dec 10, 2004 at 21:03 UTC | |
|
Re: Help with Variables
by tall_man (Parson) on Dec 10, 2004 at 21:02 UTC | |
|
Re: Help with Variables
by Joost (Canon) on Dec 10, 2004 at 20:52 UTC |