Name : perl-Text-TabularDisplay
| |
Version : 1.38
| Vendor : openSUSE
|
Release : bp156.3.1
| Date : 2023-07-22 11:25:27
|
Group : Development/Libraries/Perl
| Source RPM : perl-Text-TabularDisplay-1.38-bp156.3.1.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: /vol/rzm3/linux-opensuse/distribution/leap/15.6/repo/oss/noarch |