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 14,280 community submitted regex patterns...
0
Search and Match an IP address in a string that may have either () or [] as boundaries.
Python
Search and Match an IP address in a string that may have either () or [] as boundaries.
Submitted by
anonymous
-
5 years ago
0
Name regex
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Php log parsing
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Php log parsing
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
ESB Mail Inline Attachment
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Format directory string with trailing "\*"
PCRE (PHP <7.3)
Needed for use with Powershell function "Get-ChildItem"
Submitted by
anonymous
-
5 years ago
0
enhanced path pattern
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
EIM month location spread
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
EIM season location spread
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
EIM yead location spread
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
EIM year
PCRE (PHP <7.3)
handles atomic and combined tenor
Submitted by
anonymous
-
5 years ago
0
EIM quarter
PCRE (PHP <7.3)
handles atomic and combined tenor
Submitted by
anonymous
-
5 years ago
0
EIM month
PCRE (PHP <7.3)
handles atomic and combined tenor
Submitted by
anonymous
-
5 years ago
0
EIM prompt location spread
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Valideer bedrag
PCRE (PHP <7.3)
Valideer of een bedrag voldoet aan de volgende voorwaarden: Max 10 cijfers, geen komma en decimalen (12345690) Max 10 cijfers gevolgd door een komma en twee decimalen (1234567890,12)
Submitted by
anonymous
-
5 years ago
0
Belarus phone number
PCRE (PHP <7.3)
Номера телефонов Беларусь
Submitted by
anonymous
-
5 years ago
0
Register immediate addressing with number or symbol for displacement
PCRE (PHP <7.3)
Register bank of r0-r7 with l/h accessibility. Displacement is either a +/- decimal or symbol starting with _ or small/large letter and containing letters, numbers and _.
Submitted by
anonymous
-
5 years ago
0
EIM non location spreads
PCRE (PHP <7.3)
handles atomic and combined tenor
Submitted by
anonymous
-
5 years ago
0
Oracle Flashback Data Archive table name
PCRE (PHP <7.3)
Take SYS_FBA_TCRV_IDX1_36953 SYS_FBA_TCRV_36953 and pull out SYS_FBA_ and _36963
Submitted by
anonymous
-
5 years ago
0
Excel tab name cleaner
PCRE (PHP <7.3)
Take a tab name and change invalid characters and squeezing them into a single space character. The character class ...
Submitted by
anonymous
-
5 years ago
1
...
464
465
466
467
468
...
714
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
(?(DEFINE)
(?'loc_part'
[
\w
!#$%&'*+
\-\/
=?^`{|}~
]
+
)
(?'loc'
\g'loc_part'
(?:
\.
\g'loc_part'
)*
)
(?'subdom'
[
a
-
z
]
(?:
[
a
-
z
\d
-
]
*
[
a
-
z
\d
]
)?
)
(?'tld'
[
a
-
z
]
{2,6}
)
)
(?'local'
\g'loc'
)
@
(?'domain'
(?:
\g'subdom'
\.
)+
\g'tld'
)
/
ixg
Open regex in editor
Description
match some emails and extract their local part and domain
Submitted by
dang duomg 191
-
4 months ago
(Last modified 4 months ago)