sql 按卡号查找卡类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 按卡号查找卡类型相关的知识,希望对你有一定的参考价值。

function GetCardType(number) {
    var re = new RegExp("^4");
    if (number.match(re) != null)
        return "VISA";

    re = new RegExp("^(34|37)");
    if (number.match(re) != null)
        return "AMEX";

    re = new RegExp("^5[1-5]");
    if (number.match(re) != null)
        return "MC";

    re = new RegExp("^6011");
    if (number.match(re) != null)
        return "DISCOVER";

    return "";
}

以上是关于sql 按卡号查找卡类型的主要内容,如果未能解决你的问题,请参考以下文章

使用Python,OpenCV进行卡类型及16位卡号数字的OCR

使用Python,OpenCV进行卡类型及16位卡号数字的OCR

卡bin查询sql分享

sql数据库中多个考勤打卡数据,怎样按考勤号,日期合成一条

是否可以从 Apple Pay 令牌中获取卡类型?

ActiveMerchant 说有效卡的信用卡无效