in reply to How can we re-arrange the table content?

Take a look at mojotoads module HTML::TableExtract, which is well-suited for extracting data out of HTML tables into arrays.

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

Replies are listed 'Best First'.
Re: Re: How can we re-arrange the table content?
by Anonymous Monk on Jul 07, 2003 at 12:18 UTC
    Corion
    Thanks a lot.