karun.jiju has asked for the wisdom of the Perl Monks concerning the following question:
Suggest me a module to wrap the long text into 70 character lines. I tried the module text::format but it sometimes fails.Please find the code i tried below
use Text::Format; $body = "The Email Issue (matter getting shattering/ numbers coming in between etc..) was addressed to jiju and he is looking into this with + highest priority. This will be fixed ASAP."; $body = Text::Format->new({columns => 70,firstIndent => 0})->form +at($body); print $body;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl Module to wrap the long text into 70 character lines.
by zentara (Cardinal) on Feb 16, 2010 at 13:39 UTC | |
|
Re: Perl Module to wrap the long text into 70 character lines.
by toolic (Bishop) on Feb 16, 2010 at 14:00 UTC | |
by marto (Cardinal) on Feb 16, 2010 at 14:05 UTC |