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 2,900 community submitted regex patterns...
0
quoted strings regex
PCRE2 (PHP >=7.3)
matches quoted strings
Submitted by
anonymous
-
a year ago
0
JabRef biblatex alphabetic adaption
Java 8
A regex used to emulate the biblatex alphabetic citation key style in JabRef: https://discourse.jabref.org/t/use-field-markers-in-regex-for-citation-key-generator/3842
Submitted by
anonymous
-
a year ago
(Last modified a year ago)
0
IssuePattern
PCRE2 (PHP >=7.3)
working pattern for Issue packages
Submitted by
anonymous
-
a year ago
0
Age
PCRE2 (PHP >=7.3)
Match "I'm ##" or "I am ##"
Submitted by
Matt
-
a year ago
0
EmailValidation
PCRE2 (PHP >=7.3)
This is an Email validation using RegExp.
Submitted by
anonymous
-
a year ago
0
RegEx
PCRE2 (PHP >=7.3)
Examples
Submitted by
anonymous
-
a year ago
0
PEP
PCRE2 (PHP >=7.3)
Mikhail Stepanovich ZUSKO (Михаил Степанович ЗУСЬКО) Function: Russian military leader – Lieutenant- General Chief of staff of the “West” grouping Former Commander of the 58th Combined Arms Army of the Southern Military District DOB: 24.5.1972...
Submitted by
anonymous
-
a year ago
0
pep2
PCRE2 (PHP >=7.3)
Ramil Rakhmatulovich IBATULLIN (Рамиль Рахматуллович ИБАТУЛЛИН) Function: Russian military leader – Major-General Commander of the 90th Guards Tank Division DOB: 22.10.1976 POB: Bagishevo, Apastovsky District, Tatarstan, former USSR (now Russian Federation)...
Submitted by
anonymous
-
a year ago
0
catch inner element
Java 8
working regex for any
Submitted by
anonymous
-
a year ago
0
detect inner function with recursiion
Java 8
working for all not for java
Submitted by
anonymous
-
a year ago
0
Pull Quote regex
PCRE2 (PHP >=7.3)
Get quote text and author
Submitted by
sunilP
-
a year ago
0
APA Citation v1
Java 8
Parse APA v7 citations
Submitted by
mathias v
-
a year ago
0
Java RegEx Group Test
Java 8
Test
Submitted by
anonymous
-
a year ago
0
Java RegExMatch Example
Java 8
This is an example for stackoverflow
Submitted by
anonymous
-
a year ago
0
Basic Git pull request title validator
PCRE2 (PHP >=7.3)
Validates that there an optional [WIP] followed by a bracketed ticket number, PIDSS-n*, a space, and a string beginning with an uppercase character.
Submitted by
David E Nedrow
-
a year ago
0
Groups / pb
PCRE2 (PHP >=7.3)
Trying to get groups to work in PB CreateRegularExpression(0,"^FWD:\[(?[0-9]{4})\] (?.+\.exe): (?.*)$") x$ = "FWD:[1234] something else.exe: a bunch of text" If MatchRegularExpression(0,x$)...
Submitted by
anonymous
-
a year ago
0
匹配代码块
PCRE2 (PHP >=7.3)
用来匹配markdown里面的代码块
Submitted by
anonymous
-
a year ago
0
Bematech regex
PCRE2 (PHP >=7.3)
https://///
Submitted by
anonymous
-
a year ago
0
Kaspersky Update Domains
PCRE2 (PHP >=7.3)
Match Kaspersky update domains for exclusion from DNS logging
Submitted by
kernelmustard
-
a year ago
(Last modified a year ago)
0
ESET Secure Authentication Provisioning Server (DNS)
PCRE2 (PHP >=7.3)
Match domains of ESET Secure Authentication Provisioning Server for exclusion from DNS logs
Submitted by
kernelmustard
-
a year ago
(Last modified a year ago)
1
...
140
141
142
143
144
145
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)