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