I can't beat the primality-testing extended regex, but I hope that you'll also think the following expression is good, especially as it is a basic regex.
This tests the validity of a UK-style (DD/MM/YYYY) date:
^(?:(?:(?:(?:0[1-9]|1[0-9]|2[0-8])/(?:02))
|(?:(?:0[1-9]|[12][0-9]|30)/(?:04|06|09|11))
|(?:(?:0[1-9]|[12][0-9]|3[01])/(?:01|03|05|07|08|10|12)))/
(?:[0-9]{3}[1-9]|[0-9]{2}[1-9][0-9]|[0-9][1-9][0-9]{2}|[1-9][0-9]{3}))
|(?:(?:29/02)/(?:(?:[0-9]{2}(?:[02468][48]|[13579][26]|[2468]0))
|(?:(?:[02468][48]|[13579][26]|[2468]0)00)))$
[It should all be on one line.]
This pattern includes checks for Feb 29 validity in leap years: every 4, except every 100, except every 400 years. (So, for example, year 2011 is not leap, and years 2008, 2012 are leap, but 1900 and 2100 are not, yet 2000 is after all.)
It does however assume a Gregorian calendar always, from years 0001 to 9999. It is also possible to restrict the range of years more tightly. It is probably also possible to deal properly with both Gregorian and pre-Gregorian (Julian) dates in a single regex, although I have not tried.
Also, it is limited in that it does not capture the parts of the date. That would be best achieved using a separate simpler regex.
There's a bit more about this on my blog; see the comment too.
Rob.
Addendum: here's the same regex in expanded form:
(?:
(?:
(?:
(?:
### 01 .. 28
0[1-9] | 1[0-9] | 2[0-8]
)
/
(?:
### of Feb
02
)
)|(?:
(?:
### 01 .. 30
0[1-9] | [12][0-9] | 30
)
/
(?:
### of Apr, Jun, Sep or Nov
04 | 06 | 09 | 11
)
)|(?:
(?:
### 01 .. 31
0[1-9] | [12][0-9] | 3[01]
)
/
(?:
### of Jan, Mar, May, Jul, Aug, Oct, Dec
01 | 03 | 05 | 07 | 08 | 10 | 12
)
)
)
/
(?:
### 0001 .. 9999
### but not 0000, which is not a valid year
[0-9]{3}[1-9] | [0-9]{2}[1-9][0-9] | [0-9][1-9][0-9]{2} | [1-9][0-9]{3}
)
)|(?:
(?:
### 29 of Feb
29/02
)
/
(?:
(?:
### CC04 .. CC96, step 0004
### fourth years
### but not centuries CC00
[0-9]{2}
(?:
[02468][48] | [13579][26] | [2468]0
)
)|(?:
### 0400 .. 9600, step 0400
### fourth centuries
### but not 0000, which is not a valid year
(?:
[02468][48] | [13579][26] | [2468]0
)
00
)
)
)