in reply to Re^2: extract data using HTML::TableExtract
in thread extract data using HTML::TableExtract

What frodo72 was trying to say is that your use of quotes and qw() does not accomplish ... never mind i am repeating frodo72. Don't use qw(), but plain old comma separated list ...

'headers' => [( 'Account Number' , 'Fraud Transfer' , 'Date' , 'Balance' , 'No. of Disputes' , 'Disputed Dollars' )]

Replies are listed 'Best First'.
Re^4: extract data using HTML::TableExtract
by Anonymous Monk on Oct 10, 2005 at 13:47 UTC
    Oh IC, thanks for the clarification...