码迷,mamicode.com
首页 > 移动开发 > 详细

IOS正则表达式

时间:2014-11-24 11:31:59      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   os   sp   for   bs   nbsp   ios   

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

IOS正则表达式

标签:style   io   color   os   sp   for   bs   nbsp   ios   

原文地址:http://www.cnblogs.com/zhibin/p/4118024.html

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