Reference a non-exist hash value : value « Hash « Perl






Reference a non-exist hash value

   

#!/usr/bin/perl -w

use strict;
 
my %where = (
        G     => "Dallas",
        L     => "Exeter",
        I     => "Reading",
        S     => "Oregon"
);

delete $where{L};
print "Lucy lives in $where{L}\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 one value in hash by its key in print statement
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