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 9,340 community submitted regex patterns...
0
Spotify regex
PCRE (PHP <7.3)
no description available
Submitted by
duncte123
-
6 years ago
0
List Cleanup
PCRE (PHP <7.3)
cleans up a semicolon delimited list (remove white spaces, multiple semicolons, semicolons at the beginning or the end)
Submitted by
anonymous
-
6 years ago
0
Youtube id from a youtube url
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Date Validation #2
PCRE (PHP <7.3)
validates any date in M-d-yyyy format from 1581-01-01 to 9999-12-31, allowed delimiters are "/", "." and "-"
Submitted by
anonymous
-
6 years ago
0
Date Validation #2
PCRE (PHP <7.3)
validates any date in yyyy-M-d format from 1581-01-01 to 9999-12-31, allowed delimiters are "/", "." and "-"
Submitted by
anonymous
-
6 years ago
0
Date Validation #3
PCRE (PHP <7.3)
validates any date in (d)d-(M)M-yyyy format from 1581-01-01 to 9999-12-31, allowed delimiters are "/", "." and "-"
Submitted by
anonymous
-
6 years ago
0
music chords max possible
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
cleanup regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
musical chords
PCRE (PHP <7.3)
this will match the frequently and rarely using musical chords in a sheet music
Submitted by
anonymous
-
6 years ago
0
password match
PCRE (PHP <7.3)
password 8-16 characters atleast 1 lowercase,1 upper case,1 Spl. char,1 digit
Submitted by
anonymous
-
6 years ago
0
Find SSN
PCRE (PHP <7.3)
This will find SSN in multiple forms in a document. Source for ED https://www.jscape.com/blog/bid/79591/exploring-regular-expressions-in-dlp
Submitted by
anonymous
-
6 years ago
0
Parse group and subgroup names with parameters
PCRE (PHP <7.3)
no description available
Submitted by
zeloras
-
6 years ago
0
ip_address
PCRE (PHP <7.3)
find an ip address in a string
Submitted by
anonymous
-
6 years ago
0
flunetd
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
removes leading zeros in a string separated by space
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
PR364777
PCRE (PHP <7.3)
generic regex for all.
Submitted by
anonymous
-
6 years ago
0
regex_1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
HK Mobile Regex
PCRE (PHP <7.3)
For number with 8 digits: Only allow number start with 4-9. http://www.cirrhosismedication.com http://happinesspig.com http://premiumpig.com http://pmsecret.com...
Submitted by
anonymous
-
6 years ago
0
SpecialsChars ending
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
parsing ini files
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
1
...
282
283
284
285
286
...
467
Community Library Entry
0
Regular Expression
Python
r"
^\s
{7}
(
[
-A
]
?
\d
+
)
\s
+
(
(
.
|
\n
)*
?
)
\n^\s
{24}
(
[
A
-
Z
]
{0,2}
\d
{3}
(
\.
\d
+
)?
(
\s
(
\w
+
)
)?
)
"
gm
Open regex in editor
Description
Matches entries in a library catalogue.
Submitted by
anonymous
-
a year ago