in reply to Combining / Merging two Ho(H|A)s

There's nothing like the brute force method
foreach my $key2 (keys %hash2) { $hash1{$key2} = $hash2{$key2}; }
Code untested and probably not has elegant as it could be.

Replies are listed 'Best First'.
Re^2: Combining / Merging two Ho(H|A)s
by jkva (Chaplain) on Feb 21, 2006 at 21:02 UTC
    Brute it is. Perhaps I didn't specify that well enough - in this case the nested hashes overwrite eachother instead of merging. This is not what I intend.
    Thanks for your reply, though.