in reply to Data::Table showing error
From your code:
print $t->csv; # Display a 'portrait' HTML TABLE on web.
Question -- do you want to output HTML or CSV? If you wish to output an HTML table as the comment suggests, you might be able to accomplish this with the latest version (v1.04) of my Spreadsheet::HTML module:
use strict; use warnings; use Spreadsheet::HTML qw( portrait ); print portrait( file => 'ravi.csv', sep => '|', table => {border=>1} ) +;
jeffa
L-LL-L--L-LL-L--L-LL-L-- -R--R-RR-R--R-RR-R--R-RR B--B--B--B--B--B--B--B-- H---H---H---H---H---H--- (the triplet paradiddle with high-hat)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Data::Table showing error
by ravi45722 (Pilgrim) on Oct 28, 2015 at 04:04 UTC |