diff --git a/bin/nanpa_type_preload.pl b/bin/nanpa_type_preload.pl index 146ccc7c..3a280dd7 100644 --- a/bin/nanpa_type_preload.pl +++ b/bin/nanpa_type_preload.pl @@ -486,9 +486,9 @@ while ($sthArows > $rec_count) } ################################################## - if ($type=='S') {$landline++;} - if ($type=='C') {$cellphone++;} - if ($type=='I') {$invalid++;} + if ($type =~ /S|V/) {$landline++;} + if ($type =~ /C/) {$cellphone++;} + if ($type =~ /I/) {$invalid++;} $rec_count++; if ( ($rec_count =~ /00000$/i) && ($DB) ) {print STDERR "$rec_count / $sthArows (S:$landline | C:$cellphone | I:$invalid)\n";} }