vote up 2 vote down star

This is javascript, but a virtually identical regex is failing in PHP too, so I don't think it's language specific

var r = new RegExp(
    "^(:19|20)?[0-9][0-9]"            // optional 19/20 start followed by 2 numbers
    + "-"                             // a hyphen
    + "(:0?[1-9]|1[0-2])"             // optional 0 followed by 1-9, or 10, 11, 12
    + "-"                             // a hyphen
    + "(:3[01]|[12][0-9]|0?[1-9])$"   // you get the idea.
);
r.test("2008-07-01");                // == false

What on earth am I missing?

flag

68% accept rate

2 Answers

vote up 11 vote down check

I think your non-capturing blocks should be e.g. (?:19|20) rather than (:19|20)

link|flag
that was it, cheers. – nickf Nov 3 '08 at 7:36
vote up 2 vote down

Correct; your regular expression would actually work with "?:"

"?" when used a prefix indicates that you're going to do something about capturing. Either not capture the block (":"), capture ahead ("="), behind ("<="), etc.

link|flag

Your Answer

Get an OpenID
or

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