Help for this page

Select Code to Download


  1. or download this
       while (<>) {
          my @fields = split /,/;  # Text::CSV_XS would be better.
    ...
               || $field[3] eq $input{county};
          print;
       }
    
  2. or download this
       while (<>) {
          my @fields = split /,/;  # Text::CSV_XS would be better.
    ...
               && $field[3] eq $input{county};
          print;
       }