NAME

POE::Filter::CSV -- A POE-based parser for CSV based files.

SYNOPSIS

use POE::Filter::CSV;

my $filter = POE::Filter::CSV->new();
my $arrayref = $filter->get( [ $line ] );
my $arrayref2 = $filter->put( $arrayref );

DESCRIPTION

POE::Filter::CSV provides a convenient way to parse CSV files. It is a wrapper for the module Text::CSV.

A more comprehensive demonstration of the use to which this module can be put to is in the examples/ directory of this distribution.

METHODS

  • new

    Creates a new POE::Filter::CSV object. Takes no arguments.

  • get

    Takes an arrayref which is contains lines of CSV formatted input. Returns an arrayref of lists of fields.

  • put

    Takes an arrayref containing arrays of fields and returns an arrayref containing CSV formatted lines.

AUTHOR

Chris "BinGOs" Williams

SEE ALSO

POE Text::CSV POE::Filter POE::Filter::Line POE::Filter::Stackable