- or download this
#!/usr/bin/perl
...
$rownumber++;
}
}
- or download this
my @total = @{ [ $all_table_content[0]->rows ]->[-1] };
print join(', ', @total), "\n";
- or download this
my $table = ($te->tables)[0];
my $count = $table->rows;
my $last_row = $table->row($count - 1);
print join(', ', @$last_row), "\n";