iOS开发判断身份证号是否合法

// 身份证

/**

 * 功能:验证身份证是否合法

 * 参数:输入的身份证号

 */

+ (BOOL)isID:(NSString *)certID

{

   // NSLog(@"validateID.id=%@,length=%lu", certID, (unsigned long)certID.length);

    //add by liliumei 2014-12-04 使小x也能验证通过

    certID = [certID stringByReplacingOccurrencesOfString:@"x" withString:@"X"];

    

    //判断位数

    if (certID.length != 15 && certID.length != 18) {

        return NO;

    }

    

    NSString *carid = certID;

    long lSumQT =0;

    //加权因子

    int R[] = {7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 };

    //校验码

    unsigned char sChecker[11] = {'1','0','X', '9', '8', '7', '6', '5', '4', '3', '2'};

    

    //15位身份证号转换成18

    NSMutableString *mString = [NSMutableString stringWithString:certID];

    if ([certID length] == 15) {

        [mString insertString:@"19" atIndex:6];

        long p = 0;

        const char *pid = [mString UTF8String];

        for (int i=0; i<=16; i++)

        {

            p += (pid[i]-48) * R[i];

        }

        

        int o = p%11;

        NSString *string_content = [NSString stringWithFormat:@"%c",sChecker[o]];

        [mString insertString:string_content atIndex:[mString length]];

        carid = mString;

    }

    

    //判断地区码

    NSString * sProvince = [carid substringToIndex:2];

    if (![self areaCode:sProvince]) {

        return NO;

    }

    

    //判断年月日是否有效

    //年份

    int strYear = [[self getStringWithLocation:6 length:4 withString:certID] intValue];

    //月份

    int strMonth = [[self getStringWithLocation:10 length:2 withString:certID] intValue];

    //

    int strDay = [[self getStringWithLocation:12 length:2 withString:certID] intValue];

    

    NSTimeZone *localZone = [NSTimeZone localTimeZone];

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];

    [dateFormatter setDateStyle:NSDateFormatterMediumStyle];

    [dateFormatter setTimeStyle:NSDateFormatterNoStyle];

    [dateFormatter setTimeZone:localZone];

    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

    NSDate *date=[dateFormatter dateFromString:[NSString stringWithFormat:@"%d-%d-%d 12:01:01",strYear,strMonth,strDay]];

    if (date == nil) {

        return NO;

    }

    

    const char *PaperId  = [carid UTF8String];

    

    //检验长度

    if( 18 != strlen(PaperId)) return -1;

    //校验数字

    for (int i=0; i<18; i++)

    {

        if ( !isdigit(PaperId[i]) && !(('X' == PaperId[i] || 'x' == PaperId[i]) && 17 == i) )

        {

            return NO;

        }

    }

    //验证最末的校验码

    for (int i=0; i<=16; i++)

    {

        lSumQT += (PaperId[i]-48) * R[i];

    }

    if (sChecker[lSumQT%11] != PaperId[17] )

    {

        return NO;

    }

    

    return YES;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值