Skip to content

Instantly share code, notes, and snippets.

@clawfire
Created May 8, 2014 08:09
Show Gist options
  • Save clawfire/d3c52c5c96a2628717e9 to your computer and use it in GitHub Desktop.
Save clawfire/d3c52c5c96a2628717e9 to your computer and use it in GitHub Desktop.
RegExp Library

Credit Cards

mastercard = "^5[1-5][0-9]{14}$"
visaCredit = "^4[0-9]{12}(?:[0-9]{3})?$"
amex = "^3[47][0-9]{13}$"
Diners = "^3(?:0[0-5]|[68][0-9])[0-9]{11}$"
Discover = "^6(?:011|5[0-9]{2})[0-9]{12}$"
JCB = "^(?:2131|1800|35\d{3})\d{11}$"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment