http://www.perlmonks.org?node_id=1029926


in reply to Converting array of hash references to hash

Why do the conversion in the first place. If the data is consistent, write your program to loop through the array. It might be helpful to look at this tread Map Vs Foreach. I'm not against using map, but if the list is very long you may run into other problems.

UPDATE:

you may want to check out this module to see if does what you want Hash-MostUtils

  • Comment on Re: Converting array of hash references to hash