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,420 community submitted regex patterns...
1
email w/o query params
PCRE (PHP <7.3)
highlights emails that don't have query parameters
Submitted by
duaazahi
-
8 years ago
1
LinkedIn Regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
regex to find img src tags into html
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Date and Day
PCRE (PHP <7.3)
Thur 10 Tue 2 Mon 1 e.t.c
Submitted by
anonymous
-
8 years ago
1
Twitter hashtag
PCRE (PHP <7.3)
no description available
Submitted by
ksc
-
8 years ago
1
ANGULAR IMPORT TYPESCRIPT
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Data URI scheme
PCRE (PHP <7.3)
Simple and not complete pattern for getting the items of a Data URI scheme.
Submitted by
@afoeder
-
8 years ago
1
tag remover
PCRE (PHP <7.3)
remove html tags, while leaving text in between
Submitted by
anonymous
-
8 years ago
1
url segment parsing
PCRE (PHP <7.3)
URL Parsing
Submitted by
Ricardo Cantu
-
8 years ago
1
Gaddafi
PCRE (PHP <7.3)
Matches all spellings of the name Gaddafi that I've yet discovered.
Submitted by
Klisz
-
8 years ago
1
match @user but not email@example.com
PCRE (PHP <7.3)
for finding user mentions in markdown-like comments
Submitted by
Holger Schmidt (https://github.com/forger)
-
8 years ago
1
Text by word tail-trimming regex pattern
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
URL Match and split
PCRE (PHP <7.3)
match any type of url and split each part (protocol, domain, page, GET, and ID) in capture groups
Submitted by
anonymous
-
8 years ago
1
<a href="([^"]*)"[^<]*>(?:(?!<\/?a\b[^<]*>)[\s\S])*<img src="([^"]*)"\
PCRE (PHP <7.3)
no description available
Submitted by
Ivan Vlajic
-
8 years ago
1
Liberal URL detector
PCRE (PHP <7.3)
Detects almost all URLs contained in a sentence
Submitted by
https://gist.github.com/gruber
-
8 years ago
1
Getting video urls from content
PCRE (PHP <7.3)
For use on wordpress on multisite. Finds mp4 videos within the content.
Submitted by
Mike Kormendy
-
8 years ago
1
men
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
password8s
PCRE (PHP <7.3)
password con 8
Submitted by
anonymous
-
8 years ago
1
match non-regular words
PCRE (PHP <7.3)
no description available
Submitted by
Jason
-
8 years ago
1
CSV : Match values with carriage return
PCRE (PHP <7.3)
Use with csv with ";" delim. Matches values that contains carriage return not surrounded by double quotes.
Submitted by
anonymous
-
8 years ago
1
...
114
115
116
117
118
...
471
Community Library Entry
0
Regular Expression
Python
r"
[
\d
]
+
\.
(
[
\s\S
]
*
?
)
\n
+
A
.
(
[
\s\S
]
*
?
)
\n
+
B
.
(
[
\s\S
]
*
?
)
\n
+
C
.
(
[
\s\S
]
*
?
)
\n
+
D
.
(
[
\s\S
]
*
?
)
(?=
\n
)
"
g
Open regex in editor
Description
对有ABCD四个选项的选择题题目进行匹配
Submitted by
Wang Miao
-
a year ago