in reply to Re: Re: Re: parsing text file into a hash?in thread parsing text file into a hash?
my %names; { my ($label, @names) = split /:/; @{$names{$label}}{qw(first second third fourth)} = @names; } [download]