I have a partially nested hash like the following:
$href = {one=>1, word_counts=>{"the"=>34, "train"=>4} };
and I would like to get the value of $href->{'word_counts'}{'train'}
.
Is it possible to put the {'word_counts'}{'train'}
into a variable, so I can access it by simply calling $href->$variable
?
There are various ways to do this. I don't think you need to involved
$href
once you have a shortcut to the value that you want.You can take a reference to the value, but then you have to dereference it:
There's an experimental
refaliasing
feature where both sides are a reference. Now you don't need to dereference:It's not hard to walk the hash yourself. The trick is to get one level of the hash, store it in a variable, then use that variable to get the next level. Keep going until you are where you want to be: