I need to validate a date string in a specific format in Javascript.
The format is: MM/dd/yyyy hh:mm tt
I\'m having a really hard time trying to find either a da
A stricter regex:
/[01]\d\/[0-3]\d\/\d{4} [01]\d:[0-5]\d [AP]M/