sub gethost{ my ($val)=@_; if($val=~/(\d+\.\d+\.\d+\.\d+)/){ my $host=gethostbyaddr(inet_aton($1),AF_INET); return $host; } return ""; }