I'm trying to figure out how to detect the type of credit card based purely on its number. Does anyone know of a definitive, reliable way to find this?
|
|
Using a regular expression like the ones below: Credit for original expressions Visa: MasterCard: American Express: Diners Club: Discover: JCB: The following expression can be used to validate against all card types, regardless of brand:
Here's an image that gives a little more insight:
|
||||
|
|
|
Check this out: http://www.breakingpar.com/bkp/home.nsf/0/87256B280015193F87256CC70060A01B
|
|||||||||
|
|
Here's Complete C# or VB code for all kinds of CC related things on codeproject.
This article has been up for a couple years with no negative comments. |
|||||||
|
|
I think this is correct (not sure 100%) .. but this data used in production environment to check card type Visa usually start with 49,44 or 47 Visa electron : 42,45,48,49 Mastercard : 51 Amex :34 Diners : 30,36,38 JCB : 35 |
|||
|
|
|
I saw this post a while ago it covers Visa, Master Card, American Express, Diners Club, and discover. It also gives regex's to detect them and validate them: http://patelnirav.blogspot.com/2008/04/something-about-credit-card-validations.html Also a wiki article: http://en.wikipedia.org/wiki/Credit_card_numbers |
||||
|
|
Here is the function to check Credit card type using Regex |
|||
|
|
|
recently I needed such functionality, I was porting Zend Framework Credit Card Validator to ruby. ruby gem: https://github.com/Fivell/credit_card_validations zend framework: https://github.com/zendframework/zf2/blob/master/library/Zend/Validator/CreditCard.php They both use INN ranges for detecting type. You can read about INN here http://en.wikipedia.org/wiki/List_of_Issuer_Identification_Numbers According to this you can detect credit card alternatively (without regexps,but declaring some rules about prefixes and possible length) So we have next rules for most used cards
Then by searching prefix and comparing length you can detect credit card brand. Also don't forget about luhn algoritm (it is descibed here http://en.wikipedia.org/wiki/Luhn). |
|||
|
|
|
|||
|

