Skip to content

Instantly share code, notes, and snippets.

@ironic-name
Last active September 23, 2022 18:03
Show Gist options
  • Save ironic-name/f8e8479c76e80d470cacd91001e7b45b to your computer and use it in GitHub Desktop.
Save ironic-name/f8e8479c76e80d470cacd91001e7b45b to your computer and use it in GitHub Desktop.
Kotlin regex email validator function
fun isEmailValid(email: String): Boolean {
return Pattern.compile(
"^(([\\w-]+\\.)+[\\w-]+|([a-zA-Z]|[\\w-]{2,}))@"
+ "((([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9])\\.([0-1]?"
+ "[0-9]{1,2}|25[0-5]|2[0-4][0-9])\\."
+ "([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9])\\.([0-1]?"
+ "[0-9]{1,2}|25[0-5]|2[0-4][0-9]))|"
+ "([a-zA-Z]+[\\w-]+\\.)+[a-zA-Z]{2,4})$"
).matcher(email).matches()
}
@brunoluan7
Copy link

brunoluan7 commented Sep 23, 2022

There is an easier solution for Android:

fun isEmailValid(email: String): Boolean { 
    return android.util.Patterns.EMAIL_ADDRESS.matcher(email).matches()
}

Thanks alot, @sandboiii 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment