Answers for "Write a Regular Expression that will match a date that follows the following standard “DD-MM-YYYY”"

4

dd.mm.yyyy pattern regex

^([0]?[1-9]|[1|2][0-9]|[3][0|1])[./-]([0]?[1-9]|[1][0-2])[./-]([0-9]{4}|[0-9]{2})$
Posted by: Guest on December-17-2020

Code answers related to "Write a Regular Expression that will match a date that follows the following standard “DD-MM-YYYY”"

Code answers related to "Javascript"

Browse Popular Code Answers by Language