Help for this page

Select Code to Download


  1. or download this
    while (<DATA>) {
       chomp;
    ...
       next if substr($domain, -4) eq '.net';
       print("Host: $host   Test: $test\n");
    }
    
  2. or download this
    while (<DATA>) {
       print("Host: $1   Test: $2\n")
          if /^([^,]+),[^.]+(?<!,net)\.(.+)$/;
    }