Text::CSV_PP::Simple

Simpler parsing of CSV files
Download

Text::CSV_PP::Simple Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Kota Sakoda
  • Publisher web site:
  • http://search.cpan.org/~cohtan/

Text::CSV_PP::Simple Tags


Text::CSV_PP::Simple Description

Simpler parsing of CSV files Text::CSV_PP::Simple is a Perl module that provides a little wrapper around Text::CSV_PP to streamline the common case scenario.SYNOPSIS use Text::CSV_PP::Simple; my $parser = Text::CSV_PP::Simple->new; my @data = $parser->read_file($datafile); print @$_ foreach @data; # Only want certain fields? my $parser = Text::CSV::Simple->new; $parser->want_fields(1, 2, 4, 8); my @data = $parser->read_file($datafile); # Map the fields to a hash? my $parser = Text::CSV_PP::Simple->new; $parser->field_map(qw/id name null town/); my @data = $parser->read_file($datafile); Requirements: · Perl


Text::CSV_PP::Simple Related Software