Help for this page

Select Code to Download


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