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