The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Parse::Stallion::CSV - Comma Separated Values

SYNOPSIS

NOTE: this is still under the testing phase

  use Parse::Stallion::CSV;

  my $csv_stallion = new Parse::Stallion::CSV;

  my $result = eval {$csv_stallion->
   parse_and_evaluate({string=>$input_string})};

  if ($@) {
    if ($stallion->parse_failed) {#parse failed};
  }
  # else $result contains reference to array of arrays

DESCRIPTION

Reads a comma separated value file or string, returning a reference. to an array of arrays (or of hashes).