|
NAMEText::Table::ASV - Generate ASV (ASCII separated value a.k.a. DEL a.ka. delimited ASCII)VERSIONThis document describes version 0.002 of Text::Table::ASV (from Perl distribution Text-Table-ASV), released on 2021-02-20.SYNOPSISuse Text::Table::ASV; 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, header_row => 1); DESCRIPTIONThis module provides a single function, "table", which formats a two-dimensional array of data as ASV. This is basically a way to generate ASV using the same interface as that of Text::Table::Tiny (v0.03) or Text::Table::Org.ASV (ASCII separated values, also sometimes DEL a.k.a. Delimited ASCII) is a format similar to TSV (tab separated values). Instead of Tab character ("\t") as the field separator, ASV uses "\x1f" (ASCII Unit Separator character) and instead of newline ("\n") as the record separator, ASV uses "\x1e" (ASCII Record Separator). There is currently no quoting or escaping mechanism provided. "\x1c", "\x1d", "\x1e", and "\x1f" characters in cell will be replaced by spaces. The example shown in the SYNOPSIS generates the following table (the record separator and unit separator are shown using "\x1f" and "\x1f" respectively): Name\x1fRank\x1fSerial\x1ealice\x1fpvt\x1f123456\x1ebob\x1fcpl\x1f98765321\x1ecarol\x1fbrig gen\x1f8745 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-ASV>.SOURCESource repository is at <https://github.com/perlancar/perl-Text-Table-ASV>.BUGSPlease report any bugs or feature requests on the bugtracker website <https://github.com/perlancar/perl-Text-Table-ASV/issues>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::TinyBencher::Scenario::TextTableModules. <https://en.wikipedia.org/wiki/Delimiter-separated_values> <https://en.wikipedia.org/wiki/C0_and_C1_control_codes#Field_separators> AUTHORperlancar <perlancar@cpan.org>COPYRIGHT AND LICENSEThis software is copyright (c) 2021, 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.
Visit the GSP FreeBSD Man Page Interface. |