Please enable JavaScript to use this web application.
Regular
Expressions
101
Social
Donate
Info
Regex Editor
Community Patterns
Account
Regex Quiz
Settings
Order By
Most Recent
Most upvotes
Most downvotes
Highest Score
Lowest Score
Filter by Flavor
PCRE2 (PHP >=7.3)
PCRE (PHP <7.3)
ECMAScript (JavaScript)
Python
Golang
Java 8
.NET 7.0 (C#)
Rust
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among 5,540 community submitted regex patterns...
0
Date separated by dashes (YYYY-MM-DD)
ECMAScript (JavaScript)
Date separated by dashes in the following format YYYY-MM-DD
Submitted by
Efra
-
3 years ago
0
Only Numbers with exact 6 digits
ECMAScript (JavaScript)
Matches string which only has number and are 6 digit long
Submitted by
anonymous
-
3 years ago
0
url pain
Python
pain
Submitted by
anonymous
-
3 years ago
0
Unescaped Backslash
ECMAScript (JavaScript)
This RegEx finds unescaped backslahes
Submitted by
anonymous
-
3 years ago
0
match /start telegram bot command from messageEntity
ECMAScript (JavaScript)
Exactly what the title says
Submitted by
anonymous
-
3 years ago
0
Track2 dump data
ECMAScript (JavaScript)
Captures Track2 data, with or without start and ending sentinels ( ; and ? ) Only captures AMEX 15 digits, and Visa or MC with 16 digits. Does NOT support 13 digit credit cards and they are not in use anymore.
Submitted by
BigDAD
-
3 years ago
0
structs c
Python
test struct c regex
Submitted by
anonymous
-
3 years ago
0
buy_range_regex
ECMAScript (JavaScript)
Regex to grab range values from a crypto telegram signal
Submitted by
wandersonsousa
-
3 years ago
0
Password Validation
Python
8 char 1 special char 1 number char 1 lower char 1 upper char
Submitted by
you
-
3 years ago
(Last modified 3 years ago)
0
US Phone Checker
ECMAScript (JavaScript)
I assures input phones are formated matching certain criteria like pearing parenthesis or correct spacing. It does not check if other number instead of 1 is introduced for international prefix. I'm learning english so suggestions are welcomed for both regex and this description itself. :)
Submitted by
anonymous
-
3 years ago
0
Barcodes
Python
Matching barcodes
Submitted by
Moses
-
3 years ago
0
Media files
Python
Matching majority of media files
Submitted by
Moses
-
3 years ago
0
dimension
ECMAScript (JavaScript)
t
Submitted by
t
-
3 years ago
0
Collection of sub routes with similar segments
ECMAScript (JavaScript)
asdf
Submitted by
anonymous
-
3 years ago
0
soteshop price
ECMAScript (JavaScript)
aa
Submitted by
anonymous
-
3 years ago
0
parse domain from email
ECMAScript (JavaScript)
https://stackoverflow.com/a/48673903
Submitted by
Colby M. White
-
3 years ago
(Last modified 3 years ago)
0
Definition List in PHP Markdown Extra
ECMAScript (JavaScript)
This is the ECMAScript version of PHP regex for matching definition list as defined in PHP Markdown Extra.
Submitted by
Chattille
-
3 years ago
0
Array version 2
ECMAScript (JavaScript)
array version that accepts any expressions in the parameters
Submitted by
dila93
-
3 years ago
(Last modified 3 years ago)
0
sss
ECMAScript (JavaScript)
ssss
Submitted by
anonymous
-
3 years ago
0
Check Feature title format
ECMAScript (JavaScript)
See title
Submitted by
anonymous
-
3 years ago
1
...
239
240
241
242
243
...
277
Community Library Entry
1
Regular Expression
Python
r"
^
(?P<bar>
\|
(?:
{
(?P<num>
[
0
-
9
]
+
)
,
*
(?P<denom>
[
0
-
9
]
+
)
}
)?
)?
*
(?P<chord>
\[
[^
\]
]
+
\]
)?
(?P<lyric>
.
*
)
$
"
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
8 years ago