
Jasmine
Administrator
Jan 19, 2001, 2:48 PM
Post #1 of 1
(1093 views)
|
|
How do I reformat a paragraph?
|
Can't Post
|
|
(From the Perl FAQ) How do I reformat a paragraph? 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).
|