http://qs1969.pair.com?node_id=1227339


in reply to Re^6: Read CSV with column mapping
in thread Read CSV with column mapping

Two alternatives:

use 5.14.1; use warnings; use Data::Peek; use Text::CSV_XS "csv"; my %hash; csv (in => "pm1227312.csv", out => undef, on_in => sub { my ($key, $value) = @{$_[1]}; $key && $key !~ m/^\s*(?:#|$)/ and $hash{$key} = $value; }); DDumper \%hash; %hash = map { @$_ } @{csv (in => "pm1227312.csv", filter => { 0 => sub + { !m/^\s*(?:#|$)/ }})}; DDumper \%hash;

Enjoy, Have FUN! H.Merijn

Replies are listed 'Best First'.
Re^8: Read CSV with column mapping
by BillKSmith (Monsignor) on Jun 21, 2019 at 12:36 UTC
    At least read the documentation for Text::CSV. Even if you do not use the module, its discussion of special cases should be useful. Please ignore this post. I am not sure how I replied to such an old thread.
    Bill