in reply to Re: Re: arrays or hashes
in thread arrays or hashes
Or if you need to track all of the numbers seperatly you could use an HoA (Hash of ArrayRefs) such that you push (@{$names{"$tempname"}},$tempnum); values into it. let us know what you plan to do with the data and we can get you some decent data structs. =)my %names; open (FILE, "data") or die "Cant open data: $!\n"; while (<DATA>) { chomp; my ($tempname, $tempnum) = split / /; $names{"$tempname"} += $tempnum; } close FILE;
|
|---|