Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: is there a way to display tables?

by tomfahle (Priest)
on Dec 24, 2008 at 08:52 UTC ( [id://732431]=note: print w/replies, xml ) Need Help??


in reply to is there a way to display tables?

You should give Text::ASCIITable a try:

#!/usr/bin/perl use strict; use warnings; use Text::ASCIITable; my $table = Text::ASCIITable->new( {headingText => 'Sales per Year'} ); $table->setCols('Year', 'Sales'); $table->alignCol('Sales' => 'right'); $table->setColWidth('Sales' => 10); $table->addRow(2005, 3000.00); $table->addRow(2006, 4000.00); $table->addRow(2007, 3500.00); $table->addRow(2008, 5800.00); $table->addRowLine; $table->addRow('Average',4075.00); print $table;

Output

.-----------------. | Sales per Year | +---------+-------+ | Year | Sales | +---------+-------+ | 2005 | 3000 | | 2006 | 4000 | | 2007 | 3500 | | 2008 | 5800 | +---------+-------+ | Average | 4075 | '---------+-------'

Hope this helps.
Thomas

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://732431]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-03-28 17:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found