Answers for "android check if string is email"

0

android studio check if email is valid java

android.util.Patterns.EMAIL_ADDRESS.matcher(email.getText().toString()).matches();

It returns true if it is a valid email address and false if not
Posted by: Guest on October-13-2021
0

android is string email

boolean isEmailValid(CharSequence email) {
   return android.util.Patterns.EMAIL_ADDRESS.matcher(email).matches();
}
Posted by: Guest on August-07-2021

Code answers related to "android check if string is email"

Browse Popular Code Answers by Language