Name : perl-Text-TabularDisplay
| |
Version : 1.38
| Vendor : openSUSE
|
Release : bp150.2.4
| Date : 2018-07-30 18:19:10
|
Group : Development/Libraries/Perl
| Source RPM : perl-Text-TabularDisplay-1.38-bp150.2.4.src.rpm
|
Size : 0.05 MB
| |
Packager : https://bugs_opensuse_org
| |
Summary : Display text in formatted table output
|
Description :
Text::TabularDisplay simplifies displaying textual data in a table. The output is identical to the columnar display of query results in the mysql text monitor. For example, this data:
1, \"Tom Jones\", \"(666) 555-1212\" 2, \"Barnaby Jones\", \"(666) 555-1213\" 3, \"Bridget Jones\", \"(666) 555-1214\"
Used like so:
my $t = Text::TabularDisplay->new(qw(id name phone)); $t->add(1, \"Tom Jones\", \"(666) 555-1212\"); $t->add(2, \"Barnaby Jones\", \"(666) 555-1213\"); $t->add(3, \"Bridget Jones\", \"(666) 555-1214\"); print $t->render;
Produces:
+----+---------------+----------------+ | id | name | phone | +----+---------------+----------------+ | 1 | Tom Jones | (666) 555-1212 | | 2 | Barnaby Jones | (666) 555-1213 | | 3 | Bridget Jones | (666) 555-1214 | +----+---------------+----------------+
|
RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/openSUSE:/Backports:/SLE-15/standard/noarch |