in reply to Re^4: Problem extracting an HTML table with Perl
in thread Problem extracting an HTML table with Perl
to tell me the length of the array. If I wanted to print both terms, I'd either use a map and a joinprint 0+ @data;
or just use Foreach Loops:print join "\n", map $_->as_HTML, @data;
for my $datum (@data) { print $datum->as_HTML, "\n"; }
#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.
|
|---|