Skip to content

Instantly share code, notes, and snippets.

@CaliosD
Created March 21, 2016 02:37
Show Gist options
  • Save CaliosD/e12821df2a6f1312f646 to your computer and use it in GitHub Desktop.
Save CaliosD/e12821df2a6f1312f646 to your computer and use it in GitHub Desktop.
判断邮箱格式是否正确(利用正则表达式验证)
-(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];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment