in reply to Joining and Applying a different hash to another

Well, it sounds like you have two hashes, each containing the same type of keys, but they don't have the same key names. So, it sounds like you need a third hash, mapping old_key to new_key.
my %keymap = ( username => 'Name', password => 'PW', ); my $old = { username => 'Drew', password => 'Boy' }; my $new = {}; foreach my $k (keys %$old) { $new->{$keymap{$k}} = $old->{$k}; }

------
We are the carpenters and bricklayers of the Information Age.

Then there are Damian modules.... *sigh* ... that's not about being less-lazy -- that's about being on some really good drugs -- you know, there is no spoon. - flyingmoose

I shouldn't have to say this, but any code, unless otherwise stated, is untested