I\'m trying to write a regular expression that validates a date. The regex needs to match the following
This is not an appropriate use of regular expressions. You'd be better off using
[0-9]{2}/[0-9]{2}/[0-9]{4}
and then checking ranges in a higher-level language.