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

i try to allow only number 01 (1) to 53) after / and after 2000 and over.... so i create a regex but it don't seem to work

on this web page: http://www.regular-expressions.info/javascriptexample.html i tried it and it work well... but when i test in on a web page

10/2010 , 23/2000

function isValidDate(value, format){
     var isValid = true;

     try{
         var inputVal = $(this).val();
         var dateWWYYYYRegex = '^(0[1-9]|[1234][0-9]|5[0-3])[-/.](20)\d\d$';

         var reg=new RegExp(dateWWYYYYRegex);

         if(!reg.test(value)){
            isValid = false;
            alert("Invalid");
         }

     }
     catch(error){
         isValid = false;
    }

    return isValid;
}
share|improve this question
3  
And what's the problem? What does it don't seem to work mean in this case? – Felix Kling Jul 4 '11 at 19:09

2 Answers

up vote 3 down vote accepted

You have to escape backslashes if you're going to make a regex from a string. I'd just use regex syntax, since it's a constant anyway:

var reg = /^(0[1-9]|[1234][0-9]|5[0-3])[-/.](20)\d\d$/;

The regular expression doesn't really make any sense, however. It's not clear what it should be, because your description is also confusing.

edit — OK now that I see what you're doing, that regex should work, I guess.

share|improve this answer
1  
i want to be able to write in the first part of the regex 01 to 53 and in the second part 2000 and over..... so WW/YYYYY ww is for the week (there are max 53 week in the year) yyy is for the years.... – redfox26 Jul 4 '11 at 19:28
ya work fine, thanks – redfox26 Jul 6 '11 at 17:35

Why use regex for this task? I think it's the wrong tool for this task

Simply split the string by the slash delimiter, and then use numerical functions to check if the values are in the range you want.

function isValidWeekOfYear(value){
   var bits = value.split('/');
   if(parseInt(bits[1]) < 2000) { return false; } /* probably also want to do a maximum value here? */
   if(parseInt(bits[0]) < 1 || parseInt(bits[0]) > 53) { return false; }
   return true;
}

It might need a bit more validation than that, but that should be a good starting point for you. Much less processing overhead than a regex just to parse a couple of numbers (and easier to read too).

share|improve this answer

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.