in reply to Re^4: How to get specific hash elements?
in thread How to get specific hash elements?

It sounds like you just want your structure to be like
$VAR2 = { 'Fixed_name1 ' => 'value ', 'Fixed_name2 ' => 'value ' };
Then your original code would do what you expect. So assign just the value, rather than a hashref that uses the value as a key.

Caution: Contents may have been coded under pressure.