验证手机号码

来源:互联网 发布:windows风格ppt模板 编辑:程序博客网 时间:2024/06/10 09:04

-(BOOL)checkPhoneNumInput{

    

    

    

    NSString * MOBILE =@"^1(3[0-9]|5[0-35-9]|8[025-9]|70|77)\\d{8}$";

    

    

    

    NSString * CM =@"^1(34[0-8]|(3[5-9]|5[017-9]|8[278])\\d)\\d{7}$";

    

    

    

    NSString * CU =@"^1(3[0-2]|5[256]|8[56])\\d{8}$";

    

    

    

    NSString * CT =@"^1((33|53|8[09])[0-9]|349)\\d{7}$";

    

    

    

    // NSString * PHS = @"^0(10|2[0-5789]|\\d{3})\\d{7,8}$";

    

    

    

   NSPredicate *regextestmobile = [NSPredicatepredicateWithFormat:@"SELF MATCHES %@", MOBILE];

    

   NSPredicate *regextestcm = [NSPredicatepredicateWithFormat:@"SELF MATCHES %@", CM];

    

   NSPredicate *regextestcu = [NSPredicatepredicateWithFormat:@"SELF MATCHES %@", CU];

    

   NSPredicate *regextestct = [NSPredicatepredicateWithFormat:@"SELF MATCHES %@", CT];

    

   BOOL res1 = [regextestmobile evaluateWithObject:self];

    

   BOOL res2 = [regextestcm evaluateWithObject:self];

    

   BOOL res3 = [regextestcu evaluateWithObject:self];

    

   BOOL res4 = [regextestct evaluateWithObject:self];

    

    

    

   if (res1 || res2 || res3 || res4 )

        

    {

        

       return YES;

        

    }

    

   else

        

    {

        

       return NO;

        

    }

}


0 0
原创粉丝点击