regexmatch.dev
Explore
Open main menu
Save & Share
Facebook
Twitter
Tumblr
E-Mail
Pinterest
LinkedIn
Reddit
yyyy-MM-dd hh:MM
Published on Tue Mar 01 2022
date format for "yyyy-MM-dd hh:MM" valid strict model.
Regex
Test String
2014-02-04 12:00
Additional matching regexes for
yyyy-MM-dd hh:MM
yyyy-MM-dd hh:MM
date format for "yyyy-MM-dd hh:MM" valid strict model.
Email validation
because everything else is too strict
Product model extractor
Extracts a model ID from a product title
Currency Amount
Format: x0.00 Valid: 13.37 4.20 1.00 Invalid: 13,37 4,20 1,00 1 7.5
(krishna)
() invalid, (k) valid, (kr123) valid. only () is invalid
Product model ID extractor
Extracts a model ID from a product title. Like this: "Автомагнитола ALPINE CDE-100EUB/4S белая" -> "CDE-100EUB" Over 80 tests.
Jeff Test
Valid and Invalid emails
Alien username
Input Format The first line contains a single integer, , denoting the number of usernames. Each line of the subsequent lines contains a string denoting an alien username to validate. Constraints Output Format Iterate through each of the strings in order and determine whether or not each string is a valid alien username. If a username is a valid alien username, print VALID on a new line; otherwise, print INVALID. Sample Input 3 _0898989811abced_ _abce _09090909abcD0 Sample Output VALID INVALID INVALID Explanation We validate the following three usernames: _0898989811abced_ is valid as it satisfies the requirements specified above. Thus, we print VALID. _abce is invalid as the beginning _ is not followed by one or more digits. Thus, we print INVALID. _09090909abcD0 is invalid as the sequence of English alphabetic letters is immediately followed by a number. Thus, we print INVALID.
Logix Designer tag operand
Locates valid Logix Designer tag operands
IP v4 format validation
Valid 0.0.0.0 1.1.1.1 101.101.101.101 255.255.255.255 156.0.1.10