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

..03-May-2022-

lib/Text/CSV/H03-May-2022-1,172284

sample/H28-Jan-2016-65

t/H28-Jan-2016-595343

xt/H03-May-2022-2010

ChangesH A D28-Jan-20161.4 KiB4633

LICENSEH A D28-Jan-201618 KiB380292

MANIFESTH A D28-Jan-2016776 4039

META.jsonH A D28-Jan-20161.4 KiB5856

META.ymlH A D28-Jan-2016752 2827

Makefile.PLH A D28-Jan-20161.2 KiB5039

README.podH A D28-Jan-20161.5 KiB7143

dist.iniH A D28-Jan-20161.4 KiB5951

README.pod

1=pod
2
3=head1 NAME
4
5Text::CSV::Encoded - Encoding aware Text::CSV.
6
7=head1 SYNOPSIS
8
9    # Here in Perl 5.8 or later
10    $csv = Text::CSV::Encoded->new ({
11        encoding_in  => "iso-8859-1", # the encoding comes into   Perl
12        encoding_out => "cp1252",     # the encoding comes out of Perl
13    });
14
15    # parsing CSV is regarded as input
16    $csv->parse( $line );      # $line is a iso-8859-1 encoded string
17    @columns = $csv->fields(); # they are unicode data
18
19=head1 DESCRIPTION
20
21This module inherits L<Text::CSV> and is aware of input/output encodings.
22
23=head1 INSTALLATION
24
25This module sources are hosted on github
26https://github.com/singingfish/Text-CSV-Encoded
27and uses C<Dist::Zilla> to generate the distribution. It can be
28istalled:
29
30=over
31
32=item directly
33
34 cpanm https://github.com/singingfish/Text-CSV-Encoded.git
35
36=item from CPAN
37
38 cpan Text::CSV::Encoded
39 cpanm https://github.com/singingfish/Text-CSV-Encoded
40
41=item maualy cloninig the repository:
42
43 git clone https://github.com/singingfish/Text-CSV-Encoded.git
44 cd https://github.com/singingfish/Text-CSV-Encoded
45 perl Makefile.PL
46 make
47 make test
48 make install
49
50=back
51
52=head1 REQUIREMENTS
53
54This distribution requires Perl v5.8.0.
55
56This distribution requires the following modules:
57
58=over 4
59
60=item * L<Test::Pod> (version 1.41)
61
62=item * L<Text::CSV> (version 1.31)
63
64=back
65
66=head1 COPYRIGHT AND LICENSE
67
68This library is free software; you can redistribute it and/or modify
69it under the same terms as Perl itself.
70
71