This website uses cookies to enhance the user experience

Email Address Validator

Difficulty: 💪🏽 Medium

Problem Statement

Write a function to validate an email address. The function should check if the given email address is in the correct format. The correct format for an email address is as follows:

  • It must have the format local@domain.
  • The local part can contain alphanumeric characters and special characters ._%+-.
  • The domain part can contain alphanumeric characters and hyphens -.
  • The domain part must contain at least one dot . with at least one character before and after it.
  • The overall length of the email should be no more than 254 characters.
Example
Input: email = "test.email+alex@leetcode.com"
Output: True

Input: email = "test.email.leetcode.com"
Output: False
Constraints
  • The email address string will be a non-empty string.

Expected Challenge Output

When the function isValidEmail is called with the given example input, the expected output is a boolean indicating whether the email is valid or not.

console.log(isValidEmail("test.email+alex@leetcode.com"));  // Output: True
console.log(isValidEmail("test.email.leetcode.com"));  // Output: False
function isValidEmail(email) {
// YOUR SOLUTION HERE
}

Memory: 0

CPU: 0