Help for this page

Select Code to Download


  1. or download this
       $_ = "Priority Kirkgate, PC7588\n";
       @fields = split /,/, $_ ;
       print "PC string from NEW list: >>$fields[1]<<";
    
  2. or download this
    use strict;
    my %new_pc;
    ...
    for my $pc (keys %new) {
        print "$pc is new\n";
    };