I need to validate a date string for the format dd/mm/yyyy with a regular expresssion.
dd/mm/yyyy
This regex validates dd/mm/yyyy, but not the invalid
"^(0[1-9]|[12][0-9]|3[01])[- /.](0[1-9]|1[012])[- /.]((19|20)\\d\\d)$"
will validate any date between 1900-2099
1900-2099