MAN page from Mandrake Other perl-Text-Format0.52-1.i386.rpm
lib::Text::Format
Section: User Contributed Perl Documentation (3)
Updated: perl 5.004, patch 04
Index NAME
Text::Format - Various subroutines to format text.
SYNOPSIS
use Text::Format;
$text = Text::Format->new ( { text => [], # all columns => 72, # format, paragraphs, center leftMargin => 0, # format, paragraphs, center rightMargin => 0, # format, paragraphs, center firstIndent => 4, # format, paragraphs bodyIndent => 0, # format, paragraphs rightFill => 0, # format, paragraphs rightAlign => 0, # format, paragraphs justify => 0, # format, paragraphs extraSpace => 0, # format, paragraphs abbrevs => {}, # format, paragraphs hangingIndent => 0, # format, paragraphs hangingText => [], # format, paragraphs noBreak => 0, # format, paragraphs noBreakRegex => {}, # format, paragraphs tabstop => 8, # expand, unexpand, center } ); # these are the default values %abbr = (foo => 1, bar => 1); $text->abbrevs(\%abbr); $text->abbrevs(); $text->abbrevs({foo => 1,bar => 1}); $text->abbrevs(qw/foo bar/); $text->text(\@text); $text->columns(132); $text->tabstop(4); $text->extraSpace(1); $text->firstIndent(8); $text->bodyIndent(4); $text->config({tabstop => 4,firstIndent => 0}); $text->rightFill(0); $text->rightAlign(0); DESCRIPTION
The
format routine will format under all circumstances even if thewidth isn't enough to contain the longest words.
Text::Wrap will dieunder these circumstances, although I am told this is fixed. If columnsis set to a small number and words are longer than that and the leading'whitespace' than there will be a single word on each line. This willlet you make a simple word list which could be indented or rightaligned. There is a chance for croaking if you try to subvert themodule. If you don't pass in text then the internal text is worked on,though not modfied.
Text::Format is meant for more powerful text formatting than
Text::Wrap allows. I also have a module called
Text::NWrap thatis meant as a direct replacement for
Text::Wrap.
Text::NWraprequires
Text::Format since it uses
Text::Format->format to do theactual wrapping but gives you the interface of
Text::Wrap.
General setup should be explained with the below graph.
columns<------------------------------------------------------------><----------><------><---------------------------><-----------> leftMargin indent text is formatted into here rightMargin
indent is firstIndent or bodyIndent depending on where we are in theparagraph.
- format @ARRAY || \@ARRAY || [<FILEHANDLE>] || NOTHING
- Allows to do some advanced formatting of text into a paragraph, withindent for first line and body set separately. Can specify total widthof text, right fill with spaces or right align or justify (align to bothmargins), right margin and left margin, non-breaking space, two spacesat end of sentence, hanging indents (tagged paragraphs). Strips allleading and trailing whitespace before proceeding. Text is first splitinto words and then reassembled. If no text is passed in then theinternal text in the object is formatted.
- paragraphs @ARRAY || \@ARRAY || [<FILEHANDLE>] || NOTHING
- Considers each element of text as a paragraph and if the indents are thesame for first line and the body then the paragraphs are separated by asingle empty line otherwise they follow one under the other. If hangingindent is set then a single empty line will separate each paragraph aswell. Calls format to do the actual formatting. If no text ispassed in then the internal text in the object is formatted, though notchanged.
- center @ARRAY || NOTHING
- Centers a list of strings in @ARRAY or internal text. Empty linesappear as, you guessed it, empty lines. Center strips all leading andtrailing whitespace before proceeding. Left margin and right margin canbe set. If no text is passed in then the internal text in the object isformatted.
- expand @ARRAY || NOTHING
- Expand tabs in the list of text to tabstop number of spaces in @ARRAY orinternal text. Doesn't modify the internal text just passes back themodified text. If no text is passed in then the internal text in theobject is formatted.
- unexpand @ARRAY || NOTHING
- Tabstop number of spaces are turned into tabs in @ARRAY or internaltext. Doesn't modify the internal text just passes back the modifiedtext. If no text is passed in then the internal text in the object isformatted.
- new \%HASH || NOTHING
- Instantiates the object. If you pass a reference to a hash, or ananonymous hash then it's used in setting attributes.
- config \%HASH
- Allows the configuration of all object attributes at once. Returns theobject prior to configuration. You can use it to make a clone of yourobject before you change attributes.
- columns NUMBER || NOTHING
- Set width of text or retrieve width. This is total width and includesindentation and the right and left margins.
- tabstop NUMBER || NOTHING
- Set tabstop size or retrieve tabstop size, only used by expand, unexpandand center.
- firstIndent NUMBER || NOTHING
- Set or get indent for the first line of paragraph. This is the numberof spaces to indent.
- bodyIndent NUMBER || NOTHING
- Set or get indent for the body of paragraph. This is the number ofspaces to indent.
- leftMargin NUMBER || NOTHING
- Set or get width of left margin. This is the number of spaces used forthe margin.
- rightMargin NUMBER || NOTHING
- Set or get width of right margin. This is the number of spaces used forthe margin.
- rightFill 0 || 1 || NOTHING
- Set right fill or retrieve its value. The filling is done with spaces.Keep in mind that if rightAlign is also set then both rightFilland rightAlign are ignored.
- rightAlign 0 || 1 || NOTHING
- Set right align or retrieve its value. Text is aligned with the rightside of the margin. Keep in mind that if rightFill is also set thenboth rightFill and rightAlign are ignored.
- justify 0 || 1 || NOTHING
- Set justify or retrieve its value. Text is aligned with both margins,adding extra spaces as necessary to align text with left and rightmargins. Keep in mind that if either of rightAlign or rightFillare set then justify is ignored, even if both are set in which casethey are all ignored.
- text \@ARRAY || NOTHING
- Pass in a reference to your text, or an anonymous array of text that youwant the routines to manipulate. Returns the text held in the object.
- hangingIndent 0 || 1 || NOTHING
- Use hanging indents in front of a paragraph, returns current value ofattribute. This is also called a tagged paragraph.
- hangingText \@ARRAY || NOTHING
- The text that will be displayed in front of each paragraph, if you callformat then only the first element is used, if you call paragraphsthen paragraphs cycles through all of them. If you have moreparagraphs than elements in your array than the remainder of theparagraphs will not have a hanging indented text. Pass a reference toyour array. This is also called a tagged paragraph.
- noBreak 0 || 1 || NOTHING
- Set whether you want to use the non-breaking space feature.
- noBreakRegex \%HASH || NOTHING
- Pass in a reference to your hash that would hold the regexes on which notto break. Returns the hash.eg.
{'^Mrs?\.$' => '^\S+$','^\S+$' => '^(?:S|J)r\.$'}don't break names such as Mr. Jones, Mrs. Jones, Jones Jr.The breaking algorithm is simple. If there should not be a break at thecurrent end of sentence, then a backtrack is done till there are twowords on which breaking is allowed. If no two such words are found thenthe end of sentence is broken anyhow. If there is a single word oncurrent line then no backtrack is done and the word is stuck on the end.This is so you can make a list of names for example.
- extraSpace 0 || 1 || NOTHING
- Add extra space after end of sentence, normally format would add 1space after end of sentence, if this is set to 1 then 2 spaces are used.Abbreviations are not followed by two spaces. There are a few internalabbreviations and you can add your own to the object with abbrevs
- abbrevs \%HASH || @ARRAY || NOTHING
- Add to the current abbreviations, takes a reference to your hash or anarray of abbreviations, if called a second time the original referenceis removed and replaced by the new one. Returns the current INTERNALabbreviations.
EXAMPLE
use Text::Format;
$text = new Text::Format; $text->rightFill(1); $text->columns(65); $text->tabstop(4); print $text->format("a line to format to an indented regular paragraph using 65 character wide display"); print $text->paragraphs("paragraph one","paragraph two"); print $text->center("hello world","nifty line 2"); print $text->expand("\t\thello world\n","hmm,\twell\n"); print $text->unexpand(" hello world\n"," hmm"); $text->config({columns => 132, tabstop => 4}); $text = Text::Format->new(); print $text->format(@text); print $text->paragraphs(@text); print $text->center(@text); print $text->format([<FILEHANDLE>]); print $text->format([$fh->getlines()]); print $text->paragraphs([<FILEHANDLE>]); print $text->expand(@text); print $text->unexpand(@text);
$text = Text::Format->new ({tabstop => 4,bodyIndent => 4,text => \@text}); print $text->format(); print $text->paragraphs(); print $text->center(); print $text->expand(); print $text->unexpand(); print Text::Format->new({columns => 95})->format(@text); BUGS
Line length can exceed columns specified if columns is set to a smallnumber and long words plus leading whitespace exceed column lengthspecified. Actually I see this as a feature since it can be used tomake up a nice word list.
AUTHOR
Gabor Egressy
gaborAATTvmunix.comCopyright (c) 1998 Gabor Egressy. All rights reserved. All wrongsreversed. This program is free software; you can redistribute and/ormodify it under the same terms as Perl itself.
ACKNOWLEDGMENTS
Tom Phoenixfound bug with code for two spaces at end of sentence and provided codefragment for a better solution, some preliminary suggestions on design
Brad Appletonsuggesting and explanation of hanging indents, suggestion fornon-breaking whitespace, general suggestions with regard to interfacedesign
Byron Brummersuggestion for better interface design and object design, code forbetter implementation of getting abbreviations
H. Merijn Brandsuggestion for justify feature and original code for doing thejustification. I changed the code to take into account the extra spaceat end of sentence feature.
TODO
Index
- NAME
- SYNOPSIS
- DESCRIPTION
- EXAMPLE
- BUGS
- AUTHOR
- ACKNOWLEDGMENTS
- TODO
This document was created byman2html,using the manual pages.