Created
May 4, 2014 06:13
-
-
Save nonstriater/85f4e432d3f78110ca8d to your computer and use it in GitHub Desktop.
正则表达式验证邮箱
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (BOOL) validateEmail: (NSString *) candidate { | |
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:candidate]; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment