Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Merge Multiple Hashes

by Anonymous Monk
on May 05, 2020 at 21:53 UTC ( #11116496=note: print w/replies, xml ) Need Help??


in reply to Merge Multiple Hashes

thank you for the snippet, I really appreciate it.
I found the need of handling arrays too: append them if found.
to combine {a:[1,2]} and {a:[3,4]} into {a:[1,2,3,4]} I had to edit the while loop in the middle:
   while (my ($k,$v) = each %merged) {                                                      
     my @hashes = grep { ref $_ eq 'HASH' } @$v;
     #$merged{$k} = $v->[0] if (@$v == 1 && !ref $v->[0]);

     # append text separated with \n\n, but do not duplicate identical values
     $merged{$k} = join "\n\n", do { my %seen; grep {!$seen{$_}++} @$v} if (!ref $v->[0]);

     # append arrays one to other
     @{$merged{$k}} = map {@$_} @$v if (ref $v->[0] eq 'ARRAY');

     $merged{$k}  = mergehashes(@hashes) if @hashes;
   }
I thought someone else will find this useful too.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11116496]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others musing on the Monastery: (6)
As of 2023-06-08 09:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    How often do you go to conferences?






    Results (29 votes). Check out past polls.

    Notices?