Skip to content

Instantly share code, notes, and snippets.

@internetbird
Created March 30, 2014 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save internetbird/9869847 to your computer and use it in GitHub Desktop.
Save internetbird/9869847 to your computer and use it in GitHub Desktop.
Regex Heaven
//Phone number regex
//A simple match for up to 10 digits or {2-3}-{6-7}
var simplePnoneRegex = new Regex(@"^\d{2,3}(-)?\d{6,7}$");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment