Other Resources:
Diners Club credit card number validation
All credit card numbers issued by Diners Club must start with 300 through 305, 36 or 38 and have 14 digits. For example, 38520000023237 is a valid Visa credit card number.
How to write a single regular expression to validate a Diners Club credit card number described above?
✍: FYIcenter.com
Here is the regular expression to validate a Diners Club credit card number:
^3(?:0[0-5]|[68][0-9])[0-9]{11}$
^ - begin of the string
3 - matches 3
(?:0[0-5]|[68][0-9]) - non-capturing group of 2 possible parts
0[0-5] - 2 digits of 00, 01, 02, 03, 04 or 05
| - or operator
[68][0-9] - 2 digits start with 6 or 8
[0-9] - any decimal digit
{11} - repeating 12 times
$ - end of the string
2013-01-22, 0👍, 0💬
Popular Posts:
All credit card numbers issued by MasterCard must start with 51 through 55 and have 16 digits. For e...
All credit card numbers issued by JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
A free online regular expression test tool that allows to try you regular expression pattern and see...
All credit card numbers issued by JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
How to capture the Sogou web spider entries from Web log file? Here are some Web log file entries:12...