in reply to Copy of multidimensional hash
my %two; foreach my $key ( keys %one ) { $two{ $key } = [ @{ $one{ $key } } ]; }
in order to create values which are new anonymous arrays containing the same contents as those in the original hash.
I hope this is helpful.
Cheers,
JohnGG
|
|---|