I'm trying to make a date regex that allows years from 1900 to 2099, with the 19 or 20 optional.

I'm almost there, but I can't find a way to allow the 19 or 20 optional part. Here's what I've got:

(?:20)(?:19)?[0-9][0-9]

Testing results:

String    preg_match     is this ok? 
======    ==========     ===========
55         yes             yes
1955       yes             yes
2055       yes             yes
201955     yes             no

Can someone help out?

link|improve this question

It making the century optional really a good idea, considering the range? – Kobi Jul 21 '11 at 5:13
Let's let curiousity overrule good sense in this case. – Steve Jul 21 '11 at 5:20
feedback

2 Answers

up vote 4 down vote accepted

This will do it:

^(?:19|20)?\d{2}$

It says:

^ = Start of string

(?:19|20)? = Match 19 or 20 without capturing, zero or one times

\d{2} = 2 decimal digits

$ = End of string

link|improve this answer
Is that all? Actually have the ^$ but didn't include for simplicity. All I needed was the pipe, thanks! And the 2 decimal digits bit helps also, +1. – Steve Jul 21 '11 at 5:13
You're welcome :) – PaulP.R.O. Jul 21 '11 at 5:16
^(19|20)?[0-9]{2}$ as normalized regexp syntax? Works. – Kimi Jul 21 '11 at 5:16
feedback
((20)|(19))? 

the pipe means "OR" and they are optional because of the question mark

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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