Reference one value in hash by its key in print statement : value « Hash « Perl






Reference one value in hash by its key in print statement

   


$hash{'fruit'} = 'apple';
print "$hash{'fruit'}\n";

   
    
    
  








Related examples in the same category

1.Lists the contents of an associative array using the values function:
2.Determine if the value for the key is true or false
3.Hash Key-Value Pair Retrieval
4.Reference a non-exist hash value
5.Using hash as the hash value
6.Using hash reference to retrieve value from hash
7.Values operator extracts all the values of a hash