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

So if I need to grab the data from the table how would I quote it so that it understand that the column has multiple words. the first column is "Account Number", 2nd column is "Fraud Transfer", etc.... Once again sorry if I confused anyone by using the HTML source code. I need the information thats in the Table and not the HTML source code.
  • Comment on Re^2: extract data using HTML::TableExtract

Replies are listed 'Best First'.
Re^3: extract data using HTML::TableExtract
by parv (Parson) on Oct 10, 2005 at 00:56 UTC

    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' )]
      Oh IC, thanks for the clarification...