maybe you didnt follow my post
here is how i extract my table
#!/usr/bin/perl use strict; use warnings; use HTML::TableExtract; use LWP::UserAgent; my $ua = LWP::UserAgent->new; my $req = HTTP::Request->new(GET => ''); my $res = $ua->request($req); my $html = $res->decoded_content; my $table = HTML::TableExtract->new(); $table->parse($html); print "Content-type: text/text\n\n"; foreach my $row ($table->rows) { print @$row; }
In reply to Re^4: splitting results
by bigup401
in thread splitting results
by bigup401
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |