You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Sebb (JIRA)" <ji...@apache.org> on 2017/02/05 23:08:42 UTC

[jira] [Commented] (VALIDATOR-403) Accept Discover cards of 17 digits long that start with 6011

    [ https://issues.apache.org/jira/browse/VALIDATOR-403?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15853402#comment-15853402 ] 

Sebb commented on VALIDATOR-403:
--------------------------------

According to

https://www.discovernetwork.com/downloads/Discover-IIN-Bulletin-Feb-2015-FINAL.pdf

the 6011xx cards have a length of 16-19 digits.

Obviously this will include 17 digits but it would be better to use the strict length if we can find a definitive source for it.

> Accept Discover cards of 17 digits long that start with 6011
> ------------------------------------------------------------
>
>                 Key: VALIDATOR-403
>                 URL: https://issues.apache.org/jira/browse/VALIDATOR-403
>             Project: Commons Validator
>          Issue Type: Improvement
>          Components: CreditCard
>            Reporter: Tanya
>            Priority: Minor
>              Labels: payment, validator
>
> The latest version of the apache-validator 1.5.1 has this regex for the Discover validator:
> {code}
> /** Discover Card regular expressions */
> private static final RegexValidator DISCOVER_REGEX = new RegexValidator(new String[] {"^(6011\\d{12})$", "^(64[4-9]\\d{13})$", "^(65\\d{14})$"});
> {code}
> It does not accept the Discover cards that start with 6011 and 17 digits long. Would be nice to support it.
> Suggested regex:
> {code}
> ^(6011\\d{12})$", "^(6011\\d{13})$", "^(64[4-9]\\d{13})$", "^(65\\d{14})$"
> {code}
> Example of the valid card:
> {quote}
> 60115564485789458
> {quote}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)