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

Just a quick one, what's the best REGEX to pick out dates of this format:

Jun 12 2011 12:00:00:000AM

Months are always 3 letters and days are also 2 digits.

share|improve this question
1  
If you want to know this to parse dates, you could try strtotime instead. – zneak Jun 20 '11 at 15:02

2 Answers

up vote 5 down vote accepted
/\w{3} \d{2} \d{4} \d{2}:\d{2}:\d{2}:\d{3}(AM|PM)/i

To capture part of it just add some parthensis whenever you need

If you need to validate a string of course don't use REGEX but http://php.net/manual/en/function.checkdate.php

share|improve this answer
You'll probably want to add a few capture groups. – zneak Jun 20 '11 at 15:04
@zneak: he didn't ask for it, but yes he can add whenever he needs – yes123 Jun 20 '11 at 15:04
1  
@yes123 as asked, but your regexp matches something like XXX 99 9999 99:99:99:999AM as well :-) – Fredrik Pihl Jun 20 '11 at 15:06
Yes, that is technically correct. Not specific enough though for the JSON I'm parsing. – Ben Jun 20 '11 at 15:07
Thanks anyway. I'll stop being lazy and work it out ;). – Ben Jun 20 '11 at 15:07
show 9 more comments

try this (untested)

/(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ([0-3]\d) ([12][09]\d{2}) ([01]\d):([0-5]\d):([0-5]\d):(\d{3})(AM|PM)/
share|improve this answer
for the year, I believe you want (?:20)|(?:19). Otherwise you could have 1066 or 2934. – Michael Lowman Jun 20 '11 at 15:29

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.