• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

files/H19-Jun-2021-3325

lib/Text/H19-Jun-2021-8,8072,656

t/H03-May-2022-6,1154,950

ChangesH A D19-Jun-20219 KiB258208

MANIFESTH A D19-Jun-2021748 4544

META.jsonH A D19-Jun-20211.4 KiB6059

META.ymlH A D19-Jun-2021861 3332

Makefile.PLH A D19-Jun-20212.2 KiB7964

README.mdH A D17-Jan-2021984 3522

README.md

1Text::CSV version 1.33
2----------------------
3
4Text::CSV provides facilities for the composition and decomposition of
5comma-separated values.  An instance of the Text::CSV class can combine
6fields into a CSV string and parse a CSV string into fields.
7
8The module accepts either strings or files as input and can utilize any
9user-specified characters as delimiters, separators, and escapes so it is
10perhaps better called ASV (anything separated values) rather than just CSV.
11
12Please refer to the [complete documentation of Text::CSV](https://metacpan.org/pod/Text::CSV)
13for more information.
14
15
16#### Installation ####
17
18    cpanm Text::CSV
19
20Or manually:
21
22    perl Makefile.PL
23    make
24    make test
25    make install
26
27
28#### Copyright and License ####
29
30Copyright (C) 1997 Alan Citterman. All rights reserved.
31Copyright (C) 2007-2015 Makamaka Hannyaharamitu. All rights reserved.
32
33This library is free software; you can redistribute it and/or modify
34it under the same terms as Perl itself.
35