iOS 中使用Regex判斷身份證格式及銀行卡號格式是否正確(推薦)_Regex

來源:互聯網
上載者:User

1.有時候我們會用到上傳社會安全號碼,或者銀行卡號,這個時候就需要我們對社會安全號碼以及銀行卡號,進行基本的判斷。

下面便是社會安全號碼的判斷返回YES是合法,反之不合法

#pragma mark 判斷社會安全號碼是否合法- (BOOL)judgeIdentityStringValid:(NSString *)identityString {  if (identityString.length != 18) return NO;  // Regex判斷基本 社會安全號碼是否滿足格式  NSString *regex2 = @"^(^[1-9]\\d{7}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])\\d{3}$)|(^[1-9]\\d{5}[1-9]\\d{3}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])((\\d{4})|\\d{3}[Xx])$)$";  NSPredicate *identityStringPredicate = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",regex2];  //如果通過該驗證,說明身份證格式正確,但準確性還需計算  if(![identityStringPredicate evaluateWithObject:identityString]) return NO;  //** 開始進行校正 *//  //將前17位加權因子儲存在數組裡  NSArray *idCardWiArray = @[@"7", @"9", @"10", @"5", @"8", @"4", @"2", @"1", @"6", @"3", @"7", @"9", @"10", @"5", @"8", @"4", @"2"];  //這是除以11後,可能產生的11位餘數、驗證碼,也儲存成數組  NSArray *idCardYArray = @[@"1", @"0", @"10", @"9", @"8", @"7", @"6", @"5", @"4", @"3", @"2"];  //用來儲存前17位各自乖以加權因子後的總和  NSInteger idCardWiSum = 0;  for(int i = 0;i < 17;i++) {    NSInteger subStrIndex  = [[identityString substringWithRange:NSMakeRange(i, 1)] integerValue];    NSInteger idCardWiIndex = [[idCardWiArray objectAtIndex:i] integerValue];    idCardWiSum      += subStrIndex * idCardWiIndex;  }  //計算出校正碼所在數組的位置  NSInteger idCardMod=idCardWiSum%11;  //得到最後一位社會安全號碼碼  NSString *idCardLast= [identityString substringWithRange:NSMakeRange(17, 1)];  //如果等於2,則說明校正碼是10,社會安全號碼碼最後一位應該是X  if(idCardMod==2) {    if(![idCardLast isEqualToString:@"X"]||[idCardLast isEqualToString:@"x"]) {      return NO;    }  }else{    //用計算出的驗證碼與最後一位社會安全號碼碼匹配,如果一致,說明通過,否則是無效的社會安全號碼碼    if(![idCardLast isEqualToString: [idCardYArray objectAtIndex:idCardMod]]) {      return NO;    }  }  return YES;}

在接下來便是銀行卡號的的判斷返回YES或者是真是合法,反之不合法

#pragma mark 判斷銀行卡號是否合法-(BOOL)isBankCard:(NSString *)cardNumber{  if(cardNumber.length==0){    return NO;  }  NSString *digitsOnly = @"";  char c;  for (int i = 0; i < cardNumber.length; i++){    c = [cardNumber characterAtIndex:i];    if (isdigit(c)){      digitsOnly =[digitsOnly stringByAppendingFormat:@"%c",c];    }  }  int sum = 0;  int digit = 0;  int addend = 0;  BOOL timesTwo = false;  for (NSInteger i = digitsOnly.length - 1; i >= 0; i--){    digit = [digitsOnly characterAtIndex:i] - '0';    if (timesTwo){      addend = digit * 2;      if (addend > 9) {        addend -= 9;      }    }    else {      addend = digit;    }    sum += addend;    timesTwo = !timesTwo;  }  int modulus = sum % 10;  return modulus == 0;}

以上所述是小編給大家介紹的iOS 中使用Regex判斷身份證格式及銀行卡號格式是否正確(推薦),希望對大家有所協助,如果大家有任何疑問請給我留言,小編會及時回複大家的。在此也非常感謝大家對雲棲社區網站的支援!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.