in reply to Grabbing Embedded Tables from HTML

davido already has the problems with your post down, but for the general task of extracting data out of possibly nested tables, I can recommend mojotoads HTML::TableExtract. It turns HTML tables into easy accessible arrays.

Another solution might be Template::Extract, if you already understand the Template::Toolkit syntax and want to convert a HTML page back into a Perl structure.

perl -MHTTP::Daemon -MHTTP::Response -MLWP::Simple -e ' ; # The $d = new HTTP::Daemon and fork and getprint $d->url and exit;#spider ($c = $d->accept())->get_request(); $c->send_response( new #in the HTTP::Response(200,$_,$_,qq(Just another Perl hacker\n))); ' # web