in reply to PERL HTML::TableExtractor
"ARRAY(0x1b3243f)" is what you get when you print out a reference aka pointer variable
> perl -e ' @a=(1,2,3); $t= \@a; print $t,"\n";' ARRAY(0x806d3b4)
You can't effectively print out complex data structures without using something like Data::Dumper
|
|---|