- or download this
my %newhash = map {
$_ => [
...
} @{$hash{$_}}
]
} keys %hash;
- or download this
my %newhash = map {
$_ => [{
...
} @{$hash{$_}}
}]
} keys %hash;
- or download this
{
'103496-1' => {
...
}
}
};
- or download this
my %newhash = map {
$_ => {
...
} @{$hash{$_}}
}
} keys %hash;