Query: text::formattable
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Text::FormatTable(3pm) User Contributed Perl Documentation Text::FormatTable(3pm)NAMEText::FormatTable - Format text tablesSYNOPSISmy $table = Text::FormatTable->new('r|l'); $table->head('a', 'b'); $table->rule('='); $table->row('c', 'd'); print $table->render(20);DESCRIPTIONText::FormatTable renders simple tables as text. You pass to the constructor (new) a table format specification similar to LaTeX (e.g. "r|l|5l|R|20L") and you call methods to fill the table data and insert rules. After the data is filled, you call the render method and the table gets formatted as text. Methods: new($format) Create a Text::FormatTable object, the format of each column is specified as a character of the $format string. The following formats are defined: l Left-justified top aligned word-wrapped text. L Left-justified bottom aligned word-wrapped text. r Right-justified top aligned word-wrapped text. R Right-justified bottom aligned word-wrapped text. 10R, 20r, 15L, 12l, Number is fixed width of the column. Justified and aligned word-wrapped text (see above). ' ' A space. | Column separator. head($col1, $col2, ...) Add a header row using $col1, $col2, etc. as cell contents. Note that, at the moment, header rows are treated like normal rows. row($col1, $col2, ...) Add a row with $col1, $col2, etc. as cell contents. rule([$char]) Add an horizontal rule. If $char is specified it will be used as character to draw the rule, otherwise '-' will be used. render([$screen_width]) Return the rendered table formatted with $screen_width or 79 if it is not specified.SEE ALSOText::ASCIITableCOPYRIGHTCopyright (c) 2001-2004 Swiss Federal Institute of Technology, Zurich. (c) 2009 Trey Harris All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.CODE REPOSITORYGit - http://github.com/treyharris/Text-FormatTable/tree/masterAUTHORDavid Schweikert <dws@ee.ethz.ch> Maintained by Trey Harris <treyharris@gmail.com> Fixed column width and bottom alignment written by Veselin Slavov <vslavov@creditreform.bg> perl v5.10.0 2009-07-24 Text::FormatTable(3pm)
Related Man Pages |
---|
net::dns::text(3) - osx |
tk::table(3) - centos |
text::asciitable(3pm) - debian |
text::qrcode(3pm) - debian |
text::worddiff::ansicolor(3pm) - debian |
Similar Topics in the Unix Linux Community |
---|
How to check a column contain numeric or char data type ?? |
Add new column in Text File |
awk help |
merge two text files of different size on common index |
How to insert a word into a text file? |