Answers for "android is string email"

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

Browse Popular Code Answers by Language