|
|
| There's more than one way to do things | |
| PerlMonks |
How do I reformat a paragraph?by faq_monk (Initiate) |
| on Oct 08, 1999 at 00:20 UTC ( #597=perlfaq nodetype: print w/ replies, xml ) | Need Help?? |
|
Current Perl documentation can be found at perldoc.perl.org. Here is our local, out-dated (pre-5.6) version: Use Text::Wrap (part of the standard perl distribution):
use Text::Wrap;
print wrap("\t", ' ', @paragraphs);
The paragraphs you give to Text::Wrap should not contain embedded newlines. Text::Wrap doesn't justify the lines (flush-right).
|
|