in reply to Using HTML::TableExtract

The original html output has newlines and multiple spaces in the table header names, so they don't match the headers you specified. Adding the following after retrieving the html corrected the problem:
$raw_html =~ tr/\n//d; $raw_html =~ tr/ //s;
The output is now:
Table (2,4): eMap, 2.90, All, August 7, 2003 eTrex, 2.14, All, June 14, 2002 ...

--sacked

Replies are listed 'Best First'.
Re^2: Using HTML::TableExtract
by Roy Johnson (Monsignor) on Jun 18, 2004 at 16:25 UTC
    Your tr statements can be combined:
    $raw_html =~ tr/ \n/ /ds;

    The power of tr///