Jan 9, 2007 #1 not4google Programmer Joined Nov 6, 2006 Messages 15 Location GB Hi could someone tell me if its possible to join 2 hash arrays together in Perl? Thanks,
Jan 9, 2007 #2 ishnid Programmer Joined Aug 29, 2003 Messages 1,422 Location IE Assuming your two hashes don't have any keys in common, you can simply do this: Code: my %combined = ( %first, %second ); Upvote 0 Downvote
Assuming your two hashes don't have any keys in common, you can simply do this: Code: my %combined = ( %first, %second );