ASP.NET RegularExpressionValidator with Phone Extension Numbers

The built in options for validating an email address didn’t include any way to validate phone numbers that include extension numbers.

Here is a regular expression that does this:

(((d{3}) ?)|(d{3}-))?d{3}-d{4}( xd{0,})?

 

Leave a comment