- or download this
my $tablenr=0;
- or download this
if ($tag eq 'table'){
push @save, [$tablenr,$row,$column];
...
++$count;
$in_table++;
}
- or download this
if ($tag eq 'table') {
($tablenr, $row, $column) = @{ pop @save };
--$in_table;
}
- or download this
$table[$tablenr][$row][$column] .= $text if ($in_table) && ($text !~ m
+/^\s+$/);
- or download this
my @save=([]); #initialize with an empty list as first element.