regexmatch.dev
Explore
Open main menu
Save & Share
Facebook
Twitter
Tumblr
E-Mail
Pinterest
LinkedIn
Reddit
Date validation
Published on Tue Mar 01 2022
Besides leap year handling, this takes care of date validation in the yy-mm-dd format.
Regex
Test String
652015-07-017987987 2051-54-45 2222-12-31 2015-07-01 2015-07-32 2015-06-31 2015-02-30 6542015-07-10654654 6542222-12-31654 ^[0-9]{4}-(((0[13578]|(10|12))-(0[1-9]|[1-2][0-9]|3[0-1]))|(02-(0[1-9]|[1-2][0-9]))|((0[469]|11)-(0[1-9]|[1-2][0-9]|30)))$
Additional matching regexes for
Date validation
Date validation
Besides leap year handling, this takes care of date validation in the yy-mm-dd format.
Date-Validation with mm/dd/yyyy or mmddyyyy or mm-dd-yyyy or m/d/yyyy
Date Validation with leap year handling, & it takes care of date validation in the format like :mm/dd/yyyy or mmddyyyy or mm-dd-yyyy or m/d/yyyy or m-d-yyyy. 12/01/1986 02/29/2016 02/29/2015 13/31/1986 12/31/1980 1/32/2015 1/31/2015 01012016 01/01/2016 1/1/2016 1/1/16 01/01/16 01-01-2016 1-1-2016 1-1-16 01-01-16
ISO 8601 date
Validates a date with ISO 8601 format. Source: http://www.pelagodesign.com/blog/2009/05/20/iso-8601-date-validation-that-doesnt-suck/
Camel case to space-separated string
Takes any camel case and returns it plus spaces.
css attribute validation
css attribute validation
us phone number validation
us phone number validation
US City Validation
United States City name validation
Proxy matcher
Matches proxies in ip:port format. Takes into account that octets cant start with a 0, and that octets that are not the first octet can be a 0 if there are no more numbers behind it.
Proper-case word separator
Takes a string like 'ImageEditHRStuffSomeMOREStuff' and produces -> 'Image Edit HR Stuff Some MORE Stuff'
Email validation
Very crude, but effective email validation.