Help for this page

Select Code to Download


  1. or download this
    
    $error=1 if ($hostname =~/\.$/); #trailing . is bad
    ...
    else {
        print "Not a hostname!\n";
    }
    
  2. or download this
    $hostname =~/^[^-]([a-zA-z\-])+[^-](\.[^-][a-zA-Z0-9\-]+?[^-])+?/;