GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Text::Table::CSV(3) User Contributed Perl Documentation Text::Table::CSV(3)

Text::Table::CSV - Generate CSV

This document describes version 0.023 of Text::Table::CSV (from Perl distribution Text-Table-CSV), released on 2019-11-29.

 use Text::Table::CSV;

 my $rows = [
     # header row
     ['Name', 'Rank', 'Serial'],
     # rows
     ['alice', 'pvt', '123456'],
     ['bob',   'cpl', '98765321'],
     ['carol', 'brig gen', '8745'],
 ];
 print Text::Table::CSV::table(rows => $rows);

This module provides a single function, "table", which formats a two-dimensional array of data as CSV. This is basically a way to generate CSV 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:

 "Name","Rank","Serial"
 "alice","pvt","123456"
 "bob","cpl","98765321"
 "carol","brig gen","8745"

The "table" function understands these arguments, which are passed as a hash.
  • rows* (aoaos)

    Required. Takes an array reference which should contain one or more rows of data, where each row is an array reference.

  • header_row (bool)

    Optional, default true. Whether to print the first row (which is assumed to be the header row).

Please visit the project's homepage at <https://metacpan.org/release/Text-Table-CSV>.

Source repository is at <https://github.com/perlancar/perl-Text-Table-CSV>.

Please report any bugs or feature requests on the bugtracker website <https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Table-CSV>

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.

The de-facto module for handling CSV in Perl: Text::CSV, Text::CSV_XS.

See also Bencher::Scenario::TextTableModules.

perlancar <perlancar@cpan.org>

This software is copyright (c) 2019, 2018, 2015 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.

2019-11-28 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.