I have a form with an edit box for entering valid email-address. I dont want the user to enter spaces in the email id edit box. As soon a text is entered i call two funcs
isEmailValid(String s) || isLoginValid(String s)
isEmailValid(String s){
Pattern pattern = Pattern.compile("^[\\.\\w-]*(@[\\.\\w-]*)?$");
Matcher matcher = pattern.matcher(string);
return matcher.matches();
}
isLoginValid(String s){
Pattern pattern = Pattern.compile("^\\w+$");
Matcher matcher = pattern.matcher(string);
return matcher.matches();
}
This pattern works fine when the user enters the email-id for the first time. But as soon as the user deletes a char and enters a space, this logic breaks. I dont want user to enter spaces as email-id.
Can any help point out where i am going wrong?