Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl -w
    
    ...
      $existing_records{$surname}{$name} 
      
    }
    
  2. or download this
    open OUTPUT, ">names.csv" or die "Hcrelb: $!\n";
    foreach my $surname (keys %existing_names) {
       print OUTPUT "$_,$surname\n" for keys %{$existing_names{$surname}};
    }
    close OUTPUT;