regexmatch.dev
Explore
Open main menu
Save & Share
Facebook
Twitter
Tumblr
E-Mail
Pinterest
LinkedIn
Reddit
ReGEX EXPression
Published on Tue Mar 01 2022
ReGEX EXPression generating Values but repeating want values should not repeat.
Regex
Test String
ABCDEFGHIJKLMNOPQRSTUVWXYZ CERTIFICATION 0123456789
Additional matching regexes for
ReGEX EXPression
ReGEX EXPression
ReGEX EXPression generating Values but repeating want values should not repeat.
Slug
Matches alphanumeric slugs without repeating dashes
Bitstream with not more than 4 repeating bits
0111100 will be matched whereas 0111110 will not. Change \1{4} to max repeating count. For max 9 repeating -> \1{9}
RegEx to validate oAuth 2.0 redirect_uri
A simple RegEx rule which should validate redirect_uri for oAuth2
Regex to match any JSON value with fewer steps possible
If you find... - any JSON value that should be matched but isn't, - any JSON value that should NOT be matched but is - or simply a way to match the values with fewer steps... please, let me know.
Element's Attribute Value in XML (simple)
Simple regular expression for extracting attribute value of the element in XML-string. Attribute value should be in quotes.
parsing CSV file
It correctly handles simple values, empty values, and quoted values with commas inside.
sql: insert into
insert into table ( a, b, c ) values ( " insert into values (1,2,3)",1,2.3,"a,b" ); insert into table (ee,bb,cc) values (aa,234,"asj",2.3);
extract subdomain(if available) or domain from URL
This regex should extract the subdomain, if any, or the domain, if no subdomain is used, from an arbitrary URL
Date format
date should be in format YYYYMMDDHHMMSS