Greetings,

I am using the TableExtracter and it bombs in the line marked with ">>" when it don't match headers for the table. I would like to check to see if it matched, but I don't know what to check. Can someone please help me.


my $html = get($url) || warn "Can't fetch $url\n"; print "$string\n";

my $te = new HTML::TableExtract( headers => ["1 Year", "3 Year", "5 Year", "10 Year"] );
$te->parse($html);
>> my $p = ($te->rows)[0];


    my ( $one, $three, $five, $ten) = @$p;


Joe Alotta



Reply via email to