|
NAMEText::Table::TSV - Generate TSV VERSIONThis document describes version 0.002 of Text::Table::TSV (from Perl distribution Text-Table-TSV), released on 2019-01-17. SYNOPSIS use Text::Table::TSV;
my $rows = [
# header row
['Name', 'Rank', 'Serial'],
# rows
['alice', 'pvt', '123456'],
['bob', 'cpl', '98765321'],
['carol', 'brig gen', '8745'],
];
print Text::Table::TSV::table(rows => $rows);
DESCRIPTIONThis module provides a single function, "table", which formats a two-dimensional array of data as TSV. This is basically a way to generate TSV using the same interface as that of Text::Table::Tiny (v0.03) or Text::Table::Org. The example shown in the SYNOPSIS generates the following table (Tab might be shown as spaces): Name Rank Serial alice pvt 123456 bob cpl 98765321 carol brig gen 8745 FUNCTIONStable(%params) => strOPTIONSThe "table" function understands these arguments, which are passed as a hash.
HOMEPAGEPlease visit the project's homepage at <https://metacpan.org/release/Text-Table-TSV>. SOURCESource repository is at <https://github.com/perlancar/perl-Text-Table-TSV>. BUGSPlease report any bugs or feature requests on the bugtracker website <https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Table-TSV> 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. SEE ALSOText::Table::Tiny See also Bencher::Scenario::TextTableModules. AUTHORperlancar <perlancar@cpan.org> COPYRIGHT AND LICENSEThis software is copyright (c) 2019, 2018 by 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.
|