in reply to Matching a KEY in a HASH

The purpose of a hash (among other things) is avoiding exaustive searches. So you could write something like:
$category{'Anim'};
in order to obtain Animation Projects. I suggest reading perldata.

Also, if you want to match keys using a regular expression, read this (Tie::Hash::Regex by davorg).