The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Text::CSV version 1.30
========================

comma-separated values manipulator

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install


DEPENDENCIES

 Test::More


DESCRIPTION
        Text::CSV provides facilities for the composition and decomposition of
        comma-separated values.  An instance of the Text::CSV class can combine
        fields into a CSV string and parse a CSV string into fields.

        The module accepts either strings or files as input and can utilize any
        user-specified characters as delimiters, separators, and escapes so it is
        perhaps better called ASV (anything separated values) rather than just CSV.


COPYRIGHT AND LICENSE

        Copyright (C) 1997 Alan Citterman. All rights reserved.
        Copyright (C) 2007-2013 Makamaka Hannyaharamitu. All rights reserved.

        This library is free software; you can redistribute it and/or modify
        it under the same terms as Perl itself.