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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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 3,640 community submitted regex patterns...
0
TS constructor body
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Full name with non-latin characters
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
unlock
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Github Profile URL
ECMAScript (JavaScript)
It checks whether the Github Profile URL is valid.
Submitted by
anonymous
-
7 years ago
0
Simple email + gmail folder mod ('+spam', for example)
ECMAScript (JavaScript)
no description available
Submitted by
zarapustra
-
7 years ago
0
User Agent for Web View
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Email validation
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Email validation
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
大众点评结婚板块地址
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
大众点评营业时间
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
File or directory path - Absolute or Relative, or empty string
ECMAScript (JavaScript)
This validates that the string is a File or directory path - Absolute or Relative, or empty string.
Submitted by
anonymous
-
7 years ago
0
Script Tag in html
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Regex for C-style assignments
Golang
no description available
Submitted by
cemares
-
7 years ago
0
Regex to match positive or negative number or empty string, but not '-' alone
ECMAScript (JavaScript)
no description available
Submitted by
myth
-
7 years ago
0
SRP
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Java Regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
chinese phone number
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Mustache Language parser regexp
ECMAScript (JavaScript)
Useful for parsing HTML templates written in mustache language. This regex does not support custom delimiter tags. For documentation see: http://mustache.github.io/mustache.5.html
Submitted by
anonymous
-
7 years ago
0
Find/replace with 1 group capture
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
-1
IP Address validator
ECMAScript (JavaScript)
Validates IPv4 IP Address
Submitted by
krzysp, fty4
-
7 years ago
1
...
102
103
104
105
106
...
182
Get python function declaration
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