When processing CSV files, I usually use Text::CSV to read in the first line to get the column headings and then I use that information to index into the rest of the data by column names (I know what the columns are called, but I don't know what column number they are). Currently, I use the following code, which does not feel very Perl-ish.
use warnings;
use strict;
use Text::CSV;
# setup a CSV parser
my $csvParser = Text::CSV->new({ binary => 1, sep_char => ',', empty_i
+s_undef => 1 }) or die "Cannot create new CSV parser: $!\n";
open my $csvHandle, "<", $csvFile or die "could not open $csvFile: $!"
+;
# figure out the column headings from the first line
my @csvColumns = ();
foreach my $colName (@{$csvParser->getline($csvHandle)}) {
push @csvColumns, $colName;
}
# reverse that to allow lookup by name
my %csvColumns;
for my $colNum (0 .. scalar(@csvColumns)-1) {
$csvColumns{$csvColumns[$colNum]} = $colNum;
}
# access some column in the CSV file by name
while (my $line = $csvParser->getline($csvHandle)) {
print "Column Foo has value $$line[$csvColumns{Foo}];
}
Is there a more perl-like way to reverse an array into a hash that could then be used to get the index into the data?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.