in reply to Re: Reversing Hash
in thread Reversing Hash

only, the values are anonymous arrays and not strings ... which leads to
my %new; @new{ map {join ' ', @$_} values %hash } = keys %hash;
and I think I like tachyon's straightforward map better than this ...

-- Hofmator