Answers for "regex for yyyy-mm-dd and yyyy/m/d"

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
0

regex for yyyy-mm-dd

^d{4}-(0?[1-9]|1[012])-(0?[1-9]|[12][0-9]|3[01])$
Posted by: Guest on April-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language