Help for this page

Select Code to Download


  1. or download this
    my $var = "62.40.40.30";
    
    ...
          print "Match not found.\n";
        }
    }
    
  2. or download this
    if (exists ($hashArray{$var}))
    {
    ...
            print "IP Matches!\n";
        }
    }
    
  3. or download this
    if (exists ($hashArray{$var})){
       print "$var exists in the hash.\n";
       print "Its value is $hashArray{$var}\n";
    }