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 these two functions:

validateEmail: function(value) {
    var regex = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
return (regex.test(value)) ? true : false;
}

validateEmails: function(string) {

    var self = shareEmail;
    var result = string.replace(/\s/g, "").split(/,|;/);

        for(var i = 0;i < result.length;i++) {
            if(!self.validateEmail(result[i])) {
                return false;
            } else {               
            return true;
        }
    }
}

The problem is that when I test the email like this if(!self.validateEmails(multipleEmails)) { i get true or false based only on the first email in the string, but I want to test for any email in the string.

Thank you!

share|improve this question
   
What contains multipleEmails ? – Julien Fouilhé Aug 24 '12 at 8:15
^ and $ in the regex makes it match the whole string. See regular-expressions.info/reference.html to learn more about regular expressions – Znarkus Aug 24 '12 at 8:17
@Bartimeus It's the value of a text input... basically a string with email(s) separated by a comma or semicolon. – Florescu Adrian Aug 24 '12 at 8:17
@Znarkus I am separating each email with split function and test for each one. – Florescu Adrian Aug 24 '12 at 8:19
@FlorescuAdrian Oh now I understand. The answers below should solve your problem – Znarkus Aug 24 '12 at 8:23
show 1 more comment

3 Answers

up vote 7 down vote accepted

The problem is your if/else block; You are returning under both conditions. Which means that it leaves the function after evaluating only one element.

I've modified validateEmails to demonstrate what you probably want to do:

validateEmail: function(value) {
    var regex = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
    return (regex.test(value)) ? true : false;
}

validateEmails: function(string) {
    var self = shareEmail;
    var result = string.replace(/\s/g, "").split(/,|;/);

    for(var i = 0;i < result.length;i++) {
        if(!self.validateEmail(result[i])) {
            return false;
        }
    }

    return true;
}
share|improve this answer
How is it possible I didn't see it... x) – Julien Fouilhé Aug 24 '12 at 8:24
@Mythril Thank you!!! – Florescu Adrian Aug 24 '12 at 8:35
how is this really solved your problem? – Gustonez Aug 24 '12 at 8:45
@Gustonez Solved my problem because it's exiting the function when the if statement reaches a invalid email. This is what I was looking for, but I love your solution to because it's showing the wrong email(s) also! – Florescu Adrian Aug 24 '12 at 9:18

I find the most maintainable way is to use a variable to store the return output.

validateEmail: function(value) {
    var regex = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
return (regex.test(value)) ? true : false;
}

validateEmails: function(string) {

var self = shareEmail;
var result = string.replace(/\s/g, "").split(/,|;/);
var allOk = true;


    for(var i = 0;i < result.length;i++) {
        if(!self.validateEmail(result[i])) {
            allOk = false;
        } 
    }

return allOk;
}
share|improve this answer

how about this?

validateEmails: function(string) {

    var self = shareEmail;
    var result = string.replace(/\s/g, "").split(/,|;/);
    var errors = [];
    for(var i = 0;i < result.length;i++) {
        if(!self.validateEmail(result[i])) {
            errors[i] = result[i] + ' is not valid.';
        }
     }
     if (errors.length > 0) {
        alert(errors.join('\n'));
        return false;
     } else {
         return true;
     }

}
share|improve this answer
Thank you for your answer, great solution! – Florescu Adrian Aug 24 '12 at 9:18

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.