devxlogo

Correction to the Tip “Email Address Validation Using a Regular Expression”

There tip corrects a problem with the previously published tip Email Address Validation Using a Regular Expression. The problem with the original version is that when you enter an email address such as (for example) [email protected], the the function incorrectly returns true. The problem is in the country code. Here’s a corrected version:

public boolean validateEmail(email){   // Input the string for validation   // String email = "[email protected]";   // Set the email pattern string   Pattern p = Pattern.compile(".+@.+\.[a-z]+");   // Match the given string with the pattern   Matcher m = p.matcher(email.getText());   // check whether match is found   boolean matchFound = m.matches();   StringTokenizer st = new StringTokenizer(email, ".");   String lastToken = null;   while (st.hasMoreTokens()) {      lastToken = st.nextToken();   }   if (matchFound && lastToken.length() >= 2      && email.length() - 1 != lastToken.length()) {      // validate the country code      return true;   }   else return false;}

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.