That's a very curious problem, dataDrone. Apparently, the module will only succeed if it partly fails. For example, just switching the order of your headers makes the silly thing work.:

#!/usr/bin/perl -w use strict; my $row; use HTML::TableExtract; $/ = ""; my $string = <DATA>; my $headers = ['Date of Incident','Date','Unit cost']; my $te = HTML::TableExtract->new(headers => $headers) ; $te->parse($string); # Examine all matching tables foreach my $ts ($te->table_states) { print "Table (", join(',', $ts->coords), "):\n"; foreach $row ($ts->rows) { print join(',', @$row), "\n"; } } # use Data::Dumper ; # print Dumper($te); __DATA__ <TABLE> <tr> <th>Date</th> <th>Date of Incident</th> <th>Unit cost</th></tr> <tr> <td>11-19-2001</td> <td>11-14-2001</td> <td>.01</td> </tr> <tr> <td>11-18-2001</td> <td>11-14-2001</td> <td>.01</td> </tr> </TABLE>

The explanation might be found if you uncomment those Data::Dumper lines above, and examine the output, where the pattern to be tested is printed out. A match is tested against this pattern:
'hpat' => '((Date of Incident)|(Date)|(Unit cost))'
But I gave it no further thought beyond this. Good luck.
mkmcconn


In reply to Re: HTML::TableExtract revisited by mkmcconn
in thread HTML::TableExtract revisited by dataDrone

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.