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 18,040 community submitted regex patterns...
1
Orchestria
Python
Orchestria, DataMinder, CA DLP
Submitted by
Martin Lawrence
-
8 years ago
1
North America phone number
PCRE (PHP <7.3)
Relatively flexible pattern, intended to accept and parse North American phone numbers. Country code can be changed to accept any country phone number as long as it's of the general form ### ### #### (i.e. 10 digits, seperated into 3 digit area, 3 digit fisrt group, and 4 digit second group) This re...
Submitted by
Roman P
-
8 years ago
1
Password
ECMAScript (JavaScript)
First letter capitalized, well within the first four characters has a number and the minimum length is 8
Submitted by
Caleb Lopez
-
8 years ago
1
email
ECMAScript (JavaScript)
no description available
Submitted by
kaihang
-
8 years ago
1
match escaped end tag
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Remove whitespace character at start and end of string
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
dsadas
PCRE (PHP <7.3)
dsadsadas
Submitted by
anonymous
-
8 years ago
1
ICAO MRZ TD1
PCRE (PHP <7.3)
The Seventh Edition of Doc 9303 represents a restructuring of the ICAO specifications for Machine Readable Travel Documents. Without incorporating substantial modifications to the specifications, in this new edition Doc 9303 has been reformatted into a set of specifications for Size 1 Machine Readab...
Submitted by
Igor Ferreira
-
8 years ago
1
ops435
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
P-value
Python
grabs p-values
Submitted by
Sternlicht
-
8 years ago
0
UK Postcode Area
PCRE (PHP <7.3)
Strips out the postcode area (first one or two letters e.g. [WA]1) from a UK postcode.
Submitted by
Martin E
-
8 years ago
1
aa
PCRE (PHP <7.3)
aa
Submitted by
aa
-
8 years ago
1
emoji
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
1
Arch Pacman Name Extractor
PCRE (PHP <7.3)
Extracts package names from a list of name-version strings
Submitted by
Glen H
-
8 years ago
1
csrf
PCRE (PHP <7.3)
csrf: '(.*?)'
Submitted by
David
-
8 years ago
1
Consecutive Numbers
PCRE (PHP <7.3)
Check for 3 or more single digit consecutive numbers in the string.
Submitted by
Pradeep Patil
-
8 years ago
1
XML regex ADK
PCRE (PHP <7.3)
no description available
Submitted by
Arjen
-
8 years ago
1
SIP
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Long regex
PCRE (PHP <7.3)
no description available
Submitted by
Ric
-
8 years ago
1
Short regex
PCRE (PHP <7.3)
no description available
Submitted by
Ric
-
8 years ago
1
...
242
243
244
245
246
...
902
Community Library Entry
1
Regular Expression
Python
r"
^
(?P<show>
[
a
-
zA
-
Z1
-
9
\.\-
]
+
[^
\.
]
)
\.
[
Ss
]
?
(?P<season>
\d
{1,2}
)
[
EeXx
]
(?P<episode>
\d
{1,2}
)
(
\.
(?P<title>
[
a
-
zA
-
Z1
-
9
\.
]
+
[^
\.
]
)
)?
\.
(?P<resolution>
\d
{3,4}
p
)
\.
(?P<quality>
[
a
-
zA
-
Z
\-
]
{1,6}
)
\.
(?P<codec>
[
a
-
zA
-
Z0
-
9
\.
]
+
\d
)
(
[
\.\-
]
(?P<team>
.
+
)
)?
$
"
mgx
Open regex in editor
Description
Regex for parsing tv torrent
Submitted by
naingenieu
-
8 years ago