|
NAMEText::Table::Sprintf - Generate simple text tables from 2D arrays using sprintf()VERSIONThis document describes version 0.006 of Text::Table::Sprintf (from Perl distribution Text-Table-Sprintf), released on 2022-01-07.SYNOPSISuse Text::Table::Sprintf; my $rows = [ # header row ['Name', 'Rank', 'Serial'], # rows ['alice', 'pvt', '123456'], ['bob', 'cpl', '98765321'], ['carol', 'brig gen', '8745'], ]; print Text::Table::Sprintf::table(rows => $rows, header_row => 1); DESCRIPTIONThis module provides a single function, "table", which formats a two-dimensional array of data as a simple text table.The example shown in the SYNOPSIS generates the following table: +-------+----------+----------+ | Name | Rank | Serial | +-------+----------+----------+ | alice | pvt | 123456 | | bob | cpl | 98765321 | | carol | brig gen | 8745 | +-------+----------+----------+ This module models its interface on Text::Table::Tiny 0.03, employs the same technique of using "sprintf()", but takes the technique further by using a single large format and "sprintf" the whole table. This results in even more performance gain (see benchmark result or benchmark using Acme::CPANModules::TextTable). Caveats: make sure each row contains the same number of elements. Otherwise, the table will not be correctly formatted (cells might move to another row/column). DECLARED FEATURESFeatures declared by this module:From feature set TextTableFeatures from feature set TextTable declared by this module:
For more details on module features, see Module::Features. FUNCTIONStableUsage:my $table_str = Text::Table::Sprintf::table(%params); The "table" function understands these arguments, which are passed as a hash.
generate_tableAlias for "table", for compatibility with Text::Table::Tiny.HOMEPAGEPlease visit the project's homepage at <https://metacpan.org/release/Text-Table-Sprintf>.SOURCESource repository is at <https://github.com/perlancar/perl-Text-Table-Sprintf>.SEE ALSOText::Table::TinyOther text table modules listed in Acme::CPANModules::TextTable. The selling point of Text::Table::Sprintf is performance and light footprint (just about a page of code that does not use any module, core or otherwise). AUTHORperlancar <perlancar@cpan.org>CONTRIBUTINGTo contribute, you can send patches by email/via RT, or send pull requests on GitHub.Most of the time, you don't need to build the distribution yourself. You can simply modify the code, then test via: % prove -l If you want to build the distribution (e.g. to try to install it locally on your system), you can install Dist::Zilla, Dist::Zilla::PluginBundle::Author::PERLANCAR, and sometimes one or two other Dist::Zilla plugin and/or Pod::Weaver::Plugin. Any additional steps required beyond that are considered a bug and can be reported to me. COPYRIGHT AND LICENSEThis software is copyright (c) 2022, 2021, 2020 by perlancar <perlancar@cpan.org>.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. BUGSPlease report any bugs or feature requests on the bugtracker website <https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Table-Sprintf>When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
Visit the GSP FreeBSD Man Page Interface. |