Skip to content

Commit

Permalink
Merge pull request #20 from RalphHightower/RalphHightower-patch-17
Browse files Browse the repository at this point in the history
fix: string concatenation missing '+' (closes #19)
  • Loading branch information
RalphHightower authored Jan 21, 2023
2 parents 587546a + 0de3c21 commit 73ea1e6
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 @@ -14,7 +14,7 @@ class TelephoneFormatDetection
{
string TelephoneFormatRegularExpression =
"(?<ERC>^([2-9](11|22|33|44|55|66|77|88|99)$))|" +
"("
"(" +
"(?<NonGeoSvc>^(5[00|21|22|23|24|25|26|27|28|29|33|44|66|77|88]))|" +
"(?<CAservices>^(6[00|22]))|" +
"(?<InterExch>^(700))|" +
Expand Down

0 comments on commit 73ea1e6

Please sign in to comment.