in reply to A hash of a range of another hash
I think in any case you must scan first hash and store all keys' information (how many keys, what values, etc., hard to say what you need exactly), and then build another hash. To do this, use
keys(%hash1)or
while(each($key, $value) = %hash1) { }loop.
|
|---|