adambe has asked for the wisdom of the Perl Monks concerning the following question:
Thanks, Adam.sub get_line { my ($file, $row_num) = @_; my $parser = Parse::CSV->new( file => $file, ); while ( my $value = $parser->fetch ) { if ($parser->row() == $row_num) { return $value; } ....
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Reusing a Parse::CSV module
by RichardK (Parson) on Dec 01, 2011 at 17:22 UTC | |
|
Re: Reusing a Parse::CSV module
by Not_a_Number (Prior) on Dec 01, 2011 at 17:45 UTC |