NAME
Parsers::CSV - Parses CSV into a data structure.
SYNOPSIS
use CSV;
my $csv = CSV->new();
$csv->parse(@data);
DESCRIPTION
This module parses CSV documents into a data structure. This structure is an array of arrays.
- new()
-
Returns an instance of the Parsers::CSV class.
- parse(@data)
-
Takes a CSV as an array of lines and outputs an array reference to an array of arrays.
AUTHOR
Iestyn Pryce, <imp25@cam.ac.uk>
ACKNOWLEDGEMENTS
I'd like to thank the Ensemble project (www.ensemble.ac.uk) for funding me to work on this project in the summer of 2009.
COPYRIGHT AND LICENSE
Copyright (C) 2009 Iestyn Pryce <imp25@cam.ac.uk>
This library is free software; you can redistribute it and/or modify it under the terms of the BSD license.