Skip to content

Instantly share code, notes, and snippets.

@mmazer
Created September 24, 2012 00:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmazer/3773564 to your computer and use it in GitHub Desktop.
Save mmazer/3773564 to your computer and use it in GitHub Desktop.
Regex: Patterns for various date formats
// yyyy-mm-dd:
/^(19|20)[-](0[1-9]|1[012])[-](0[1-9]|[12][0-9]|3[01])$/
// // mm-dd-yyyy
/^(0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])[- /.](19|20)$/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment