Skip to content

Instantly share code, notes, and snippets.

@akuafif
Created December 10, 2015 21:01
Show Gist options
  • Save akuafif/723da19e2cfc40eec2e9 to your computer and use it in GitHub Desktop.
Save akuafif/723da19e2cfc40eec2e9 to your computer and use it in GitHub Desktop.
[Java/Android] Email Validation from a String
public static boolean isEmailValid(CharSequence email) {
return android.util.Patterns.EMAIL_ADDRESS.matcher(email).matches();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment