Help for this page

Select Code to Download


  1. or download this
    print "Exists!\n" if exists $hash{somekey};
    
  2. or download this
    my %hash = ( Key1 => { john => 1, pete => 2 },
                 Key2 => { frank => 3, howard => 4 } );
    print "ted Exists!\n" if exists $hash{Key7}{ted};
    print "Key7 now exists!\n" if exists $hash{Key7};