Skip to content

Instantly share code, notes, and snippets.

@miguel12345
Created November 29, 2013 10:06
Show Gist options
  • Select an option

  • Save miguel12345/7703751 to your computer and use it in GitHub Desktop.

Select an option

Save miguel12345/7703751 to your computer and use it in GitHub Desktop.
Verify email
NSString* emailString = @"stuff@provider.com";
NSString *emailRegEx = @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}";
NSPredicate *emailTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", emailRegEx];
[emailTest evaluateWithObject:emailString]; //returns BOOL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment