Posted on 2005-08-17 08:47:47-07 by lunatics in response to 876
Re: Is there any way to have a footer line?
Hey, Thanks for the compliments, and thoughts! There is a dirty way to get what you want. If you turn on rowLines you could do this:
$t = new Text::ASCIITable({ drawRowLine => 1 }); $t->setCols("one",'two','three','four'); push @$t, (join("\n",( 1..2 ))) x 4; push @$t, ( '3', '3', '3', '3' ); print $t;
Maybe I will make this easier in a future update. Probably soon.. It was an good idea as an addition :) -- Håkon Nessjøen
Direct Responses: 908 | Write a response
Perl Weekly newsletter
A free weekly newsletter for people who are busy to read all the blogs. click here to check it out.