in reply to HTML::TableExtract issues
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;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: HTML::TableExtract issues
by Mr Bigglesworth (Initiate) on Aug 24, 2013 at 12:26 UTC | |
by poj (Abbot) on Aug 24, 2013 at 16:17 UTC | |
by Mr Bigglesworth (Initiate) on Aug 26, 2013 at 12:50 UTC | |
by Laurent_R (Canon) on Aug 24, 2013 at 15:29 UTC | |
by Mr Bigglesworth (Initiate) on Aug 26, 2013 at 12:24 UTC |