Help for this page

Select Code to Download


  1. or download this
      while (<INPUT>) {
       ($userName,$emailAddress,$division,$fullName)  = split(/\|/, $_);
    ...
          last;
         }
       }
    
  2. or download this
      my $exists = 0;
      while (<INPUT>) {
    ...
       } else {
        print "$emailAddress doesn't exist"\n";
       }
    
  3. or download this
    sub main {
      my $input_qfn   = "input.file";
    ...
        }
      }
    }
    
  4. or download this
    David@domain.com exists in the pattern file
    Cory@domain.com doesn't exist in the pattern file
    Tania@domain.com exists in the pattern file
    Geoffrey@domain.com doesn't exist in the pattern file