Answers for "how to check email in android"

3

android is valid email

import android.util.Patterns

val email: String = "[email protected]"

private fun String.isValidEmail(): Boolean {
	return Patterns.EMAIL_ADDRESS.matcher(this).matches()
}

email.isValidEmail()
Posted by: Guest on May-12-2021
1

email valid android

public static boolean isValidEmail(CharSequence target) {
    return (!TextUtils.isEmpty(target) && Patterns.EMAIL_ADDRESS.matcher(target).matches());
}
Posted by: Guest on April-22-2021

Code answers related to "how to check email in android"

Browse Popular Code Answers by Language