Email validation on textField in iOS

65,776

Solution 1

Use NSPredicate and Regex:

- (BOOL)validateEmailWithString:(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];
}

For a bunch of emails separated by a comma:

- (NSMutableArray*)validateEmailWithString:(NSString*)emails
{
    NSMutableArray *validEmails = [[NSMutableArray alloc] init];
    NSArray *emailArray = [emails componentsSeparatedByString:@","];
    for (NSString *email in emailArray)
    {
        NSString *emailRegex = @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}"; 
        NSPredicate *emailTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", emailRegex]; 
        if ([emailTest evaluateWithObject:email])
            [validEmails addObject:email];
    }
    return [validEmails autorelease];
}

Edited Answer: (It also validates extra dots )

- (BOOL)validateEmailWithString:(NSString*)checkString
{
    BOOL stricterFilter = NO; // Discussion http://blog.logichigh.com/2010/09/02/validating-an-e-mail-address/
    NSString *stricterFilterString = @"[A-Z0-9a-z\\._%+-]+@([A-Za-z0-9-]+\\.)+[A-Za-z]{2,4}";
    NSString *laxString = @".+@([A-Za-z0-9-]+\\.)+[A-Za-z]{2}[A-Za-z]*";
    NSString *emailRegex = stricterFilter ? stricterFilterString : laxString;
    NSPredicate *emailTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", emailRegex];
    return [emailTest evaluateWithObject:checkString];
}

Solution 2

Try this out
This checks exactly with top level domain names along with validation.


- (BOOL)validateEmail:(NSString *)inputText {
    NSString *emailRegex = @"[A-Z0-9a-z][A-Z0-9a-z._%+-]*@[A-Za-z0-9][A-Za-z0-9.-]*\\.[A-Za-z]{2,6}"; 
    NSPredicate *emailTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", emailRegex]; 
    NSRange aRange;
    if([emailTest evaluateWithObject:inputText]) {
        aRange = [inputText rangeOfString:@"." options:NSBackwardsSearch range:NSMakeRange(0, [inputText length])];
        int indexOfDot = aRange.location;
        //NSLog(@"aRange.location:%d - %d",aRange.location, indexOfDot);
        if(aRange.location != NSNotFound) {
            NSString *topLevelDomain = [inputText substringFromIndex:indexOfDot];
            topLevelDomain = [topLevelDomain lowercaseString];
            //NSLog(@"topleveldomains:%@",topLevelDomain);
            NSSet *TLD;
            TLD = [NSSet setWithObjects:@".aero", @".asia", @".biz", @".cat", @".com", @".coop", @".edu", @".gov", @".info", @".int", @".jobs", @".mil", @".mobi", @".museum", @".name", @".net", @".org", @".pro", @".tel", @".travel", @".ac", @".ad", @".ae", @".af", @".ag", @".ai", @".al", @".am", @".an", @".ao", @".aq", @".ar", @".as", @".at", @".au", @".aw", @".ax", @".az", @".ba", @".bb", @".bd", @".be", @".bf", @".bg", @".bh", @".bi", @".bj", @".bm", @".bn", @".bo", @".br", @".bs", @".bt", @".bv", @".bw", @".by", @".bz", @".ca", @".cc", @".cd", @".cf", @".cg", @".ch", @".ci", @".ck", @".cl", @".cm", @".cn", @".co", @".cr", @".cu", @".cv", @".cx", @".cy", @".cz", @".de", @".dj", @".dk", @".dm", @".do", @".dz", @".ec", @".ee", @".eg", @".er", @".es", @".et", @".eu", @".fi", @".fj", @".fk", @".fm", @".fo", @".fr", @".ga", @".gb", @".gd", @".ge", @".gf", @".gg", @".gh", @".gi", @".gl", @".gm", @".gn", @".gp", @".gq", @".gr", @".gs", @".gt", @".gu", @".gw", @".gy", @".hk", @".hm", @".hn", @".hr", @".ht", @".hu", @".id", @".ie", @" No", @".il", @".im", @".in", @".io", @".iq", @".ir", @".is", @".it", @".je", @".jm", @".jo", @".jp", @".ke", @".kg", @".kh", @".ki", @".km", @".kn", @".kp", @".kr", @".kw", @".ky", @".kz", @".la", @".lb", @".lc", @".li", @".lk", @".lr", @".ls", @".lt", @".lu", @".lv", @".ly", @".ma", @".mc", @".md", @".me", @".mg", @".mh", @".mk", @".ml", @".mm", @".mn", @".mo", @".mp", @".mq", @".mr", @".ms", @".mt", @".mu", @".mv", @".mw", @".mx", @".my", @".mz", @".na", @".nc", @".ne", @".nf", @".ng", @".ni", @".nl", @".no", @".np", @".nr", @".nu", @".nz", @".om", @".pa", @".pe", @".pf", @".pg", @".ph", @".pk", @".pl", @".pm", @".pn", @".pr", @".ps", @".pt", @".pw", @".py", @".qa", @".re", @".ro", @".rs", @".ru", @".rw", @".sa", @".sb", @".sc", @".sd", @".se", @".sg", @".sh", @".si", @".sj", @".sk", @".sl", @".sm", @".sn", @".so", @".sr", @".st", @".su", @".sv", @".sy", @".sz", @".tc", @".td", @".tf", @".tg", @".th", @".tj", @".tk", @".tl", @".tm", @".tn", @".to", @".tp", @".tr", @".tt", @".tv", @".tw", @".tz", @".ua", @".ug", @".uk", @".us", @".uy", @".uz", @".va", @".vc", @".ve", @".vg", @".vi", @".vn", @".vu", @".wf", @".ws", @".ye", @".yt", @".za", @".zm", @".zw", nil];
            if(topLevelDomain != nil && ([TLD containsObject:topLevelDomain])) {
                //NSLog(@"TLD contains topLevelDomain:%@",topLevelDomain);
                return TRUE;
            }
            /*else {
             NSLog(@"TLD DOEST NOT contains topLevelDomain:%@",topLevelDomain);
             }*/

        }
    }
    return FALSE;
}

Solution 3

Use the below code:-

NSString *emailRegEx = @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}";
NSPredicate *emailTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", emailRegEx];
//Valid email address

if ([emailTest evaluateWithObject:userMailTextField.text] == YES) 
{
     //Do Something
}
else
{
     NSLog(@"email not in proper format");
}

userMailTextField is the name of my textField (use your own).

I hope this code will help you!!!

Solution 4

Use Below code for "Swift language" For Email Validation

func ValidateEmailString (strEmail:NSString) -> Bool
{
   let emailRegex = "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}"
   let emailText = NSPredicate(format:"SELF MATCHES [c]%@",emailRegex)
   return (emailText.evaluate(with: strEmail))
} 

Thanks :)

Solution 5

NSRegularExpression is the Best Way to Validate Email Addresses with iOS 4.x and Later.

-(BOOL) validateEmail:(NSString*) emailString 
{
     NSString *regExPattern = @"^[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,4}$";
     NSRegularExpression *regEx = [[NSRegularExpression alloc] initWithPattern:regExPattern options:NSRegularExpressionCaseInsensitive error:nil];
     NSUInteger regExMatches = [regEx numberOfMatchesInString:emailString options:0 range:NSMakeRange(0, [emailString length])];
     NSLog(@"%i", regExMatches);
     if (regExMatches == 0) {
         return NO;
     } 
     else
         return YES;
}

Usage :

if([self validateEmail:@"[email protected]"]) {
  //Email Address is valid.
} 
else {
  //Email Address is invalid.
}
Share:
65,776

Related videos on Youtube

ios
Author by

ios

Updated on June 08, 2020

Comments

  • ios
    ios almost 4 years

    In iOS App, how to add Email validation on UITextField?

  • Rog
    Rog about 13 years
    @Prerak see my edited answer above. This will return an array with all the valid emails.
  • Eduardo Coelho
    Eduardo Coelho almost 12 years
    I tried to test this regex with the email address [email protected] (with two dots after provider) and it passed. Is it an invalid email address?
  • Florian
    Florian almost 11 years
    There ist the string @" No" in your set of top-level domains. I think that should not be there. Also, your list is missing some official top-level domains, e.g. non-latin ones. See iana.org/domains/root/db for the official IANA list.
  • matsr
    matsr over 10 years
    @Florian: .no is a valid TLD. It is used a lot in Norway. It is even listed in the resource you linked to. E.g: www.google.no
  • Florian
    Florian over 10 years
    I am not talking about @".no", but @"No". It's right after @".ie" in the list.
  • jturolla
    jturolla about 10 years
    This is not a good idea, this is already outdated as the .bike and .ventures TDL and thousands of others are already on sale.
  • Gajendra K Chauhan
    Gajendra K Chauhan about 10 years
    Smart and useful answer+1
  • venki
    venki almost 10 years
    how to restrict the user to enter his email id as only @gmail.com in text field.
  • Louie
    Louie over 9 years
    @EduardoCoelho if thats the case run a "string replace" before attempting to validate. emailString = [emailString stringByReplacingOccurrencesOfString:@".." withString:@"."];
  • Ankur Kathiriya
    Ankur Kathiriya over 8 years
    great answer ...tnx a lot @SNR
  • Krutarth Patel
    Krutarth Patel over 7 years
    Nice Solution Ilesh
  • Luca Torella
    Luca Torella over 7 years
    also ' is a valid character in an email address. The regex should be "[A-Z0-9a-z'._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,6}"
  • Genevios
    Genevios about 7 years
    Thanks for this example! It's really awesome!
  • rathodbhavikk
    rathodbhavikk over 6 years
    ' ' [blank space] in emailId is not getting recognised as incorrect email, is it ok?
  • Corbin Miller
    Corbin Miller almost 5 years
    What will happen if you have a Chinese character in your email?
  • Seto
    Seto over 4 years
    I think this should be the correct answer. The accepted answer fail if there's space in the middle of email address.