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

..03-May-2022-

lib/Text/H03-Nov-2009-892429

BuildH A D03-Nov-20091.3 KiB5844

Build.PLH A D03-Nov-2009153 76

ChangesH A D03-Nov-20094.2 KiB10995

MANIFESTH A D03-Nov-200993 1110

META.ymlH A D03-Nov-2009350 1716

Makefile.PLH A D03-Nov-2009328 1311

READMEH A D03-Nov-2009478 2211

test.csvH A D03-Nov-2009398.7 KiB1312

test.plH A D03-Nov-20095.1 KiB235161

README

1This is a pure Perl module for reading CSV-type formats.
2
3Features:
4
5  o Line oriented.  (ie Doesn't slurp the whole file.)
6
7  o Handles embedded commas, returns, and quotes properly.
8
9  o Simple interface.
10
11  o It attempts to give informative errors on problems in the file.
12
13Drawbacks:
14
15  o It is not optimized for performance.
16
17  o It is strongly oriented towards reading data from a file.
18
19  o Any use of the special variables $`, $&, or $' will slow it
20    significantly.
21
22