regexmatch.dev
Explore
Open main menu
Save & Share
Facebook
Twitter
Tumblr
E-Mail
Pinterest
LinkedIn
Reddit
DD/MM pattern
Published on Tue Mar 01 2022
Checks for DD/MM pattern must start and end with the digits no letters or other symbols allowed. Made by your good guy Levent M. (it accepts also 28+/02 but yhea one problem at a time right?)
Regex
Test String
31/12 30/12 01/01 a01/02 01/01basdasd 32/01 32/12 01/13 32/13
Additional matching regexes for
DD/MM pattern
DD/MM pattern
Checks for DD/MM pattern must start and end with the digits no letters or other symbols allowed. Made by your good guy Levent M. (it accepts also 28+/02 but yhea one problem at a time right?)
Username Validation
Super simple, just checks for 5 or more letters/numbers/symbols.
price float pattern
Checks that value is float format and has two digits at max
Regex_Article
Start with two letters and followed by any number of Integers
Name Validation
Start with capital letter. Allowed special characters '(Apostrophe) -(hyphen) .(dot) (space) and can not end with -(Hyphen)
Reading only the "=" symbol
The pattern should match only the "=" symbols with in the html content other than the HTML attributes. i.e if we have <html><head>Sample head</head><body style="Font family: Courier New"><p> This is a test a=b=c=d or a = b = c </p> </body></html> The pattern should match only "=" outside the html tags <>
Password Validation
Checks for password containing at least 1 Upper case, 1 lower case, 1 digit and 1 special character, all together with a length of at least 8. (This pattern allows any order of the requried elements, other than what was been distributed here before)
Simple TIN number regex
- Only accept numerics/digits and hyphens, forbidding them at the start and the end of the number, and avoid two consecutive occurrences.
Person NAME verification
Regular Expression ``` ^[a-zA-Z ]{2,30}$ ``` - Allow only letters and space between each characters to support for multi word single name. Only accepts english letter characters.
simple common lisp tokenizer
main symbols and comments are supported