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

I am using this home-made function to validate text fields, but for some reason, it doesn't "accept" spaces. I find that weird, since I have \s in my class...

function validateText(controlid, minlength, maxlength, required) {
    var control = document.getElementById(controlid);
    if (!required && control.value.length == 0) control.style.backgroundColor = "White";
    else {
        var regex = new RegExp("^[a-zA-Z0-9\(\)\.\s_,:/-]{" + minlength + "," + maxlength + "}$", "g");
        if (!regex.test(control.value))
            control.style.backgroundColor = "#FFDDDD";
        else
            control.style.backgroundColor = "White";
    }
}

Can you tell me why entering a space turns the textbox red? Thanks :)

share|improve this question
What is the minlength and maxlength values in that case – Arun P Johny Jul 28 '11 at 3:31
@Jesper - I made a demo, and working fine. hope some help ~ http://jsfiddle.net/5ryx8/ – Monday Jul 28 '11 at 4:18

1 Answer

up vote 3 down vote accepted

I believe it's because you're trying to put \s in a class. Inside a class (eg, []) \s is simple a badly-escaped "s". Either use a literal space, or do ^([...]|\s){.

share|improve this answer
Yes, if you replace the \s with a space, it works. You can see it work here in the jsFiddle: jsfiddle.net/jfriend00/Ne6zC. – jfriend00 Jul 28 '11 at 3:38
Thanks guys. It's working fine now – Jesper Jul 28 '11 at 3:49

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.