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,740 community submitted regex patterns...
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
0
nondigits - digits
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Multi group regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Commit Message - Header Pattern (Optimized)
PCRE (PHP <7.3)
git-stuff commit message header pattern.
Submitted by
jeffryangtoni24
-
6 years ago
0
Basic Email Validation
PCRE (PHP <7.3)
Basic email validation supporting IDN emails (töm@outlook.com), quoted characters (t\ om@outlook.com). Does not validate emails using quoted characters that are not escaped, so this exception should be handled by your mail service.
Submitted by
TJ Walker
-
6 years ago
0
Check if contains No Chinese
PCRE (PHP <7.3)
Check if string contains No Chinese characters: http://www.cirrhosismedication.com http://www.pmsecret.com http://premiumpig.com http://happinesspig.com...
Submitted by
anonymous
-
6 years ago
0
BAD: Last-Name-Pattern
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
larry - first try removing all closing tags
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
1
...
112
113
114
115
116
...
487
Community Library Entry
2
Regular Expression
Python
r"
[
\w
'
-
.
]
+
\w
|
[
\w
'-
]
+
\s
*
"
Open regex in editor
Description
Matches words without external punctuation but with internal punctuation.
Submitted by
anonymous
-
9 years ago