in reply to Re: Text::Autoformat
in thread Text::Autoformat
use strict; use warnings; use Text::Autoformat; my $str=qw/@/; for my $i(1..11){ my $newStr = autoformat ($str, { justify => 'center' }); print "$newStr\n"; $str .= '@@' if $i <= 5; substr $str, -2, 2, '' if $i > 5; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Text::Autoformat
by GrandFather (Saint) on Apr 28, 2006 at 20:39 UTC | |
by Andrew_Levenson (Hermit) on Apr 28, 2006 at 20:42 UTC |