下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。
内存溢出小编现在分享给大家,也给大家做个参考。
//textFIEld.text 为你要获取的值Nsstring *P_textfIEld = [textFIEld.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]]; ////////miller 手机 推荐验证 /** * 手机号码 * 移动:134[0-8],135,136,137,138,139,150,151,157,158,159,182,187,188 * 联通:130,131,132,152,155,156,185,186 * 电信:133,1349,153,180,189 */ Nsstring * MOBILE = @"^1(3[0-9]|5[0-35-9]|8[025-9])\d{8}$"; /** 10 * 中国移动:China Mobile 11 * 134[0-8],188 12 */ Nsstring * CM = @"^1(34[0-8]|(3[5-9]|5[017-9]|8[278])\d)\d{7}$"; /** 15 * 中国联通:China Unicom 16 * 130,186 17 */ Nsstring * CU = @"^1(3[0-2]|5[256]|8[56])\d{8}$"; /** 20 * 中国电信:China Telecom 21 * 133,189 22 */ Nsstring * CT = @"^1((33|53|8[09])[0-9]|349)\d{7}$"; /** 25 * 大陆地区固话及小灵通 26 * 区号:010,020,021,022,023,024,025,027,028,029 27 * 号码:七位或八位 28 */ // Nsstring * PHS = @"^0(10|2[0-5789]|\d{3})\d{7,8}$"; nspredicate *regextestmobile = [nspredicate predicateWithFormat:@"SELF MATCHES %@",MOBILE]; nspredicate *regextestcm = [nspredicate predicateWithFormat:@"SELF MATCHES %@",CM]; nspredicate *regextestcu = [nspredicate predicateWithFormat:@"SELF MATCHES %@",CU]; nspredicate *regextestct = [nspredicate predicateWithFormat:@"SELF MATCHES %@",CT]; if (([regextestmobile evaluateWithObject:P_textfIEld] == YES) || ([regextestcm evaluateWithObject:P_textfIEld] == YES) || ([regextestct evaluateWithObject:P_textfIEld] == YES) || ([regextestcu evaluateWithObject:P_textfIEld] == YES)) { UIAlertVIEw *P_sendSMSAlert = [[UIAlertVIEw alloc] initWithTitle:@"确认 *** 作" message:@"系统将发送一条消息给自己的好友" delegate:self cancelbuttonTitle:@"确定" otherbuttonTitles:@"取消",nil]; [P_sendSMSAlert show]; } else { UIAlertVIEw *sendSMS = [[UIAlertVIEw alloc] initWithTitle:@"错误" message:@"输入的手机号码格式有误!" delegate:self cancelbuttonTitle:@"确定" otherbuttonTitles:nil]; [sendSMS show]; }
以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
总结以上是内存溢出为你收集整理的iOS验证电话全部内容,希望文章能够帮你解决iOS验证电话所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)