Skip to content

Commit

Permalink
Merge pull request #49 from RalphHightower/RalphHightower-patch-36
Browse files Browse the repository at this point in the history
fix: one area code didn’t have the 'or'
  • Loading branch information
RalphHightower authored Feb 13, 2023
2 parents 1a0fd6d + ccd6603 commit a825c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MonsterRegularExpression_NANPA_formats.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class TelephoneFormatDetection
"(^" +
"(?<ERC>([2-79](11|22|33|44|55|66|77|88|99)))$|" +
"(" +
"(?<ReservedAreaCode>[2-9]9[0-9]|39[0-9]|96[0-9])" +
"(?<ReservedAreaCode>[2-9]9[0-9]|39[0-9]|96[0-9])|" +
"(?<NonGeoSvc>(5[00|2[1-9]|33|44|66|77|88]))|" +
"(?<CAservices>(6[00|22]))|" +
"(?<InterExch>(700))|" +
Expand Down

0 comments on commit a825c1a

Please sign in to comment.