Is there a way to get a sub-hash? Do I need to use a hash slice?
For example:
%hash = ( a => 1, b => 2, c => 3 );
I want only
%hash = ( a => 1, b => 2 );
|
|
Hash slices return the values associated with a list of keys. To get a hash slice you change the sigil to @ and provide a list of keys (in this case
Often you can use a quote word operator to produce the list:
You can also assign to a hash slice, so if you want a new hash that contains a subset of another hash you can say
Many people will use a map instead of hash slices:
|
||||
|
You'd probably want to assemble a list of keys you want:
And then use a loop to make the hash:
Or:
(My preference is the second one, but whichever one you like is best.) |
|||
|
|
|
FWIW, I use Moose::Autobox here:
In real life, I use this to extract "username" and "password" from a form submission, and pass that to Catalyst's |
|||||||||||
|
|
Yet another way:
|
|||
|
|
|
Too much functional programming leads me to think of With List::MoreUtils installed,
Unfortunately, the prototype of List::MoreUtils's
If you really want to avoid the intermediate variable, you could
Or just write your own
If you're going to be mutating in-place,
avoids the extra copying that the |
|||
|
|
|
A hash is an unordered container, but the term slice only really makes sense in terms of an ordered container. Maybe look into using an array. Otherwise, you may just have to remove all of the elements that you don't want to produce your 'sub-hash'. |
|||
|
|