oc中判断是否是一个合法手机号
2个回答
展开全部
//7.合法手机号 要求:手机号以1开头总共有11位 并且手机号中不能有除了数字以外的其他字符
-(BOOL)isPhoneNumberOfString:(NSString *)phoneString{
NSMutableString *str3=[[NSMutableString alloc]init];
int count=0,sum;
NSString *str1=[phoneString substringToIndex:1];
if ([str1 isEqualToString:@"1"]==YES) {
++sum;
[str3 appendString:@"第一个号码为:1"];
// BOOL ret=[[str3 substringWithRange:NSMakeRange(0, 1)]isEqualToString:@"1"];
}
//
for (NSUInteger i=0; i<[phoneString length]; i++) {
unichar c=[phoneString characterAtIndex:i];
int set=(int)c-48;
if(c>='0'&&c<='9'){
++count;
NSLog(@"%d",count);
}
}
NSLog(@"(7)手机号码全为数字的位数:%d %@",count,str3);
NSLog(@"如何号码符合返回1:如何号码不符合返回0:%d",(count==11&&sum==1));
return (count==11&&sum==1);
}
-(BOOL)isPhoneNumberOfString:(NSString *)phoneString{
NSMutableString *str3=[[NSMutableString alloc]init];
int count=0,sum;
NSString *str1=[phoneString substringToIndex:1];
if ([str1 isEqualToString:@"1"]==YES) {
++sum;
[str3 appendString:@"第一个号码为:1"];
// BOOL ret=[[str3 substringWithRange:NSMakeRange(0, 1)]isEqualToString:@"1"];
}
//
for (NSUInteger i=0; i<[phoneString length]; i++) {
unichar c=[phoneString characterAtIndex:i];
int set=(int)c-48;
if(c>='0'&&c<='9'){
++count;
NSLog(@"%d",count);
}
}
NSLog(@"(7)手机号码全为数字的位数:%d %@",count,str3);
NSLog(@"如何号码符合返回1:如何号码不符合返回0:%d",(count==11&&sum==1));
return (count==11&&sum==1);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询