I need a regular expression to validate a timestamp of the format, using Javascript:
YYYY/MM/DD HH:MI:SS
I trie
Using
(\d\d)?\d\d\/\d\d?/\d\d? \d\d?:\d\d:\d\d
could validate the syntax, but as balpha points out, that doesn't make it a valid date.