in reply to Argument isn't numeric in hash element

Your errors suggests that provide us the code before this line which may has anything to do with this variables.
Both of the code below works.:
$hashref = { '$/ 11' => 'a'}; $fieldnum= '$/ 11'; $value = $hashref->{$fieldnum}; print "$value";
and
$hashref = { a => '$/ 11' }; $fieldnum= 'a'; $value = $hashref->{$fieldnum}; print "$value";