码迷,mamicode.com
首页 > 其他好文 > 详细

Objective C中E-mail地址验证

时间:2014-10-17 16:51:31      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   sp   div   cti   log   bs   

1 -(BOOL)isValidateEmail:(NSString *)email
2 {
3     NSString *emailRegex = @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}";
4     NSPredicate *emailTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", emailRegex];
5     return [emailTest evaluateWithObject:email];
6 }

 

Objective C中E-mail地址验证

标签:style   blog   color   for   sp   div   cti   log   bs   

原文地址:http://www.cnblogs.com/yybz/p/4031498.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!