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,300 community submitted regex patterns...
1
bot
Python
no description available
Submitted by
anonymous
-
4 years ago
1
Non-symmetric positive lookahead (touching relation)
Python
no description available
Submitted by
anonymous
-
4 years ago
1
Flexible box
Golang
no description available
Submitted by
anonymous
-
4 years ago
1
carryover_assimilation_plosives
Python
no description available
Submitted by
anonymous
-
4 years ago
1
Final Regex for the log
Python
A single regex with the AND operator instead of OR
Submitted by
anonymous
-
4 years ago
1
Bug in regexp match count
Python
no description available
Submitted by
anonymous
-
4 years ago
1
Email validation
Python
Email string validation, manage wildcard and subdomains
Submitted by
anonymous
-
4 years ago
1
Flexible phone validation
Python
International / national format allowing space or dots as separator.
Submitted by
anonymous
-
4 years ago
1
什么值得买文章评论解析
Python
https://www.smzdm.com/p/23523045/p3/#comments 解析引用评论内容, 为保持表情顺序, 使用正则分步替换
Submitted by
anonymous
-
4 years ago
1
ffmppeg
Python
no description available
Submitted by
anonymous
-
4 years ago
1
Lxx Wurzel
Golang
no description available
Submitted by
anonymous
-
4 years ago
1
Week Regex
Python
Regex for MM/DD/YYYY week
Submitted by
anonymous
-
4 years ago
1
2- SEMANA3
Python
no description available
Submitted by
anonymous
-
4 years ago
1
ali
Python
no description available
Submitted by
anonymous
-
4 years ago
1
ali
Python
no description available
Submitted by
anonymous
-
4 years ago
1
linux log regex
Python
used to pull Date, time and PID from linux log files
Submitted by
anonymous
-
4 years ago
1
linux log regex
Python
Matches Date & time in group 1, and the PID in group 4. will update to match computer name and user names too when i can.
Submitted by
anonymous
-
4 years ago
1
windows file name from full path
Golang
Find all string matches with dir, one or more subdir, file name with optional extension. Common example with all capturing groups included: C://ProgramFiles/MyDir1/myDir2/file.ext
Submitted by
anonymous
-
4 years ago
1
Unix file with full path
Golang
Find all string matches with dir, one or more subdir, file name with optional extension. Common example with all capturing groups included: ../../dir/SubDir1/SubDir2/file.ext ...
Submitted by
anonymous
-
4 years ago
1
linkedin
Python
no description available
Submitted by
anonymous
-
4 years ago
1
...
102
103
104
105
106
...
115
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