Skip to content

Instantly share code, notes, and snippets.

@casspangell
Created April 5, 2014 20:37
Show Gist options
  • Select an option

  • Save casspangell/9997783 to your computer and use it in GitHub Desktop.

Select an option

Save casspangell/9997783 to your computer and use it in GitHub Desktop.
- (BOOL)validateEmail:(NSString *)emailStr {
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:emailStr];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment