Skip to content

Instantly share code, notes, and snippets.

@toadkicker
Created September 3, 2013 21:06
Show Gist options
  • Select an option

  • Save toadkicker/6429591 to your computer and use it in GitHub Desktop.

Select an option

Save toadkicker/6429591 to your computer and use it in GitHub Desktop.
Validate phone numbers
String.prototype.isValidPhone = function() {
var filter = /^[0-9a-zA-Z\s.:#\(\)\+\-]+$/;
if (!filter.test(this)) {
return false;
} else {
return true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment