Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
SpunkerBaba:Try to print out the outputs of the 2 functions.Also I think you should use isEmailValid(String s) && isLoginValid(String s). – Emil Dec 29 '10 at 5:12

2 Answers

up vote 2 down vote accepted

I'm not 100% sure, but is it possible that it is matching the e-mails because it is matching your string because most everything is zero or more times? Followed by something that can happen zero or more times. Maybe try something like:

Pattern pattern = Pattern.compile("^[\\w]+[\\.\\w-]*(@[\\w-]+\\.[\\w-]+)?$");

I'm not sure if this will help. Also, You probably want both to have to be valid, but maybe not. It's worth considering if you wanted:

isEmailValid(String s) && isLoginValid(String s)

instead of:

isEmailValid(String s) || isLoginValid(String s)

but it's also possible (and potentially logical) that you meant what you wrote. Just a suggestion.

share|improve this answer
was this any help? – Matt Dec 30 '10 at 1:04
Sorry for the late response. Solves my problem, but introduces a new one. As soon as i enter "@" Matcher returns false and my purpose fails. – SpunkerBaba Dec 31 '10 at 16:52
Solved. isEmailValid(String s) || isLoginValid(String s) along with your suggested Pattern works like charm. Your answer is accepted :) – SpunkerBaba Dec 31 '10 at 17:05
@SpunkerBaba Good deal! Glad to help! – Matt Dec 31 '10 at 17:35

regexp are not universal matchers. the easiest way to solve your task is to make additional check for empty string:

 if (org.apache.commons.lang.StringUtils.isBlank(email)) {
    return false;
 }
share|improve this answer
This would probably be considerably easier. I dare say try this before my answer. – Matt Dec 29 '10 at 7:42
As per StringUtils.isBlank() javadoc: Checks if a String is whitespace, empty ("") or null.. Which is essentially same as checking if((email == null) || (email.trim().length() == 0)). Also instead of if (org.apache.commons.lang.StringUtils.isBlank(email)) return false; } you can write it as return !org.apache.commons.lang.StringUtils.isBlank(email); – Favonius Dec 29 '10 at 8:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.