use HTML::TableExtract qw(tree);
HTML::TableExtract is not ignoring undefined cells, you are. By grep {defined} you tell it to throw them away. Instead, use something like
my @values = map defined($_) ? $_ : ' ', @$row;
In reply to Re: HTML::TableExtract issues
by choroba
in thread HTML::TableExtract issues
by Mr Bigglesworth
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |