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...
0
iCalendar property parsing
Python
parses property strings as used by iCalendar. Kinda.
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
分组引用
Python
分组引用
Submitted by
anonymous
-
2 years ago
0
Phone number
Python
Phone number
Submitted by
anonymous
-
2 years ago
0
decimal double point with range number from minus to plus range number
Python
the decimal, double point with range number from minus to plus range number, the example from -199.99 to 199.99 revision from example pattern 1: ^(?:\-?10(?:\.\d\d?)?|\-?[1]?[1-9]?0-9?)$
Submitted by
eki.saputra
-
2 years ago
(Last modified 2 years ago)
0
regular expresion mathematical expression
Python
re to validate x/(x+b)=(dx)/a like 7/(x+9) = (4x)/3
Submitted by
anonymous
-
2 years ago
0
flake8-sql False Positives
Python
An example false positive matching docstring for the regex used by flake8-sql (https://github.com/pgjones/flake8-sql).
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
ISO8601 Date/Time Parser
Python
Parses most of the variations of ISO8601 that are allowed, including dates only and date/time with or without the time zone.
Submitted by
Mumblepins
-
2 years ago
0
Bot-Studio Comments
Python
Regex For Comments In Bot Studio Via YT Docs
Submitted by
Codaea
-
2 years ago
0
Author names
Python
Matches author names
Submitted by
anonymous
-
2 years ago
0
TRye bracktres
Python
gfhtrgh
Submitted by
anonymous
-
2 years ago
0
telephone_finder
Python
[-+ ]?[178]?[ ]?\d[ ]?\d[ ]?\d[ ]?\d[ ]?\d[ ]?\d[ ]?
Submitted by
anonymous
-
2 years ago
0
Bandwidth value validation
Python
Bandwidth value validation: 1-1023K 1-1023M 1-40G
Submitted by
Damien Stuart
-
2 years ago
0
Email validation regex
Python
This email validation regex works perfectly (99.99%) for validating email address entries. The regex does not match email addresses with with the following characteristics: Addresses that begin/end with a special character Addresses with consecutive repeated special characters ...
Submitted by
Bright Owusu
-
2 years ago
(Last modified 2 years ago)
0
Out of
Python
Out of
Submitted by
anonymous
-
2 years ago
0
Letras, número e traço
Golang
Substitui tudo que não for letra, número e traço
Submitted by
anonymous
-
2 years ago
0
Contas regex
Python
A simple regex for contas bancárias
Submitted by
anonymous
-
2 years ago
0
oracle_package_new_type
Golang
find/replace oracle package body new type
Submitted by
anonymous
-
2 years ago
0
singleTime ztm
Python
ss
Submitted by
pochwix2
-
2 years ago
0
Code Block Splitting
Python
Useful for getting codeblock from a text
Submitted by
anonymous
-
2 years ago
0
KPI Dash Drop-In Image Compliance
Python
This regex is designed for end users to test if there image file is name compliant.
Submitted by
Jeremiah Carlson
-
2 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