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,880 community submitted regex patterns...
0
Capture Data between 2 slashes
PCRE2 (PHP >=7.3)
Capture Data between 2 slashes
Submitted by
Sarnath Jegadeesan
-
2 years ago
0
Split The Phone Numbers
PCRE2 (PHP >=7.3)
Split The Phone Numbers
Submitted by
anonymous
-
2 years ago
0
Ipv4 validation
PCRE2 (PHP >=7.3)
regex for ip validation
Submitted by
Amper
-
2 years ago
0
嵌入条件
PCRE2 (PHP >=7.3)
嵌入条件
Submitted by
anonymous
-
2 years ago
0
Remove Hatena blog keyword
PCRE2 (PHP >=7.3)
Remove Hatena blog keyword
Submitted by
anonymous
-
2 years ago
0
simulate to event
PCRE2 (PHP >=7.3)
simulate to event
Submitted by
anonymous
-
2 years ago
0
simulate to event
PCRE2 (PHP >=7.3)
simulate to event
Submitted by
anonymous
-
2 years ago
0
simulate to event
PCRE2 (PHP >=7.3)
simulate to event
Submitted by
anonymous
-
2 years ago
0
find abc in string
PCRE2 (PHP >=7.3)
first test
Submitted by
anonymous
-
2 years ago
0
regex-input-number
PCRE2 (PHP >=7.3)
regex-input-number
Submitted by
me
-
2 years ago
0
Partial Date
PCRE2 (PHP >=7.3)
Partial date
Submitted by
anonymous
-
2 years ago
0
/Host: (.*?)<br>/gu
PCRE2 (PHP >=7.3)
1
Submitted by
anonymous
-
2 years ago
0
非贪婪
PCRE2 (PHP >=7.3)
非贪婪
Submitted by
anonymous
-
2 years ago
0
独占模式
PCRE2 (PHP >=7.3)
独占模式
Submitted by
anonymous
-
2 years ago
0
灾难性回溯
PCRE2 (PHP >=7.3)
灾难性回溯
Submitted by
anonymous
-
2 years ago
0
Replace regex with [does not contain string + contain string]
PCRE2 (PHP >=7.3)
o let's imagine this here: images/dwaudhawd_Test Picture.png I would need to replace this into this:...
Submitted by
Suman Maharjan
-
2 years ago
0
Kucoin trading
PCRE2 (PHP >=7.3)
Used to match kucoin trading links
Submitted by
anonymous
-
2 years ago
0
Get HTML Balise
PCRE2 (PHP >=7.3)
.
Submitted by
anonymous
-
2 years ago
0
google
PCRE2 (PHP >=7.3)
google api
Submitted by
anonymous
-
2 years ago
0
Card number
PCRE2 (PHP >=7.3)
Card number
Submitted by
anonymous
-
2 years ago
1
...
102
103
104
105
106
...
144
Community Library Entry
1
Regular Expression
Rust
r"
(?P<function>
def
\s
+
(?P<function_name>
\w
+
)
\s
*
\(
(?P<parameters>
(?:
.
|
\n
)*
?
)
\)
:
\s
*
(?:
\n
[
\t
]
+
.
*
?
)*
\n
)
"
g
Open regex in editor
Description
Gets the python function declarations
Submitted by
anonymous
-
a year ago