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 3,640 community submitted regex patterns...
0
suffix doppelt
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Betreffzeile auflösen
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Betreffzeile auflösen
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Email validation
ECMAScript (JavaScript)
Simple email validation regexpr to handle subdomains and other stuff. See example
Submitted by
anonymous
-
6 years ago
0
rawString.split(/([^0-9.]+)/)
ECMAScript (JavaScript)
Splitting operators from numbers for a calculator
Submitted by
Kagerjay
-
6 years ago
0
Replace forward slash
ECMAScript (JavaScript)
For Stackoverflow by Sufiyan Ghori
Submitted by
anonymous
-
6 years ago
0
weblab
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Parse Tanggal
ECMAScript (JavaScript)
parse tanggal
Submitted by
anonymous
-
6 years ago
0
Discord Discriminator Finder
ECMAScript (JavaScript)
Finds the discriminator flawlessly (as per its use)
Submitted by
anonymous
-
6 years ago
0
select semicolon except entity
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
File name Cleanup
ECMAScript (JavaScript)
Strips all non "A-Z,a-z,0-9+-_" characters and replaces them with a single "-"
Submitted by
Apsis0215
-
6 years ago
0
regex of number
ECMAScript (JavaScript)
15 digits for integer real number: 18 digits for before-dot part (*what it's called?)
Submitted by
anonymous
-
6 years ago
0
Youtube Updated 2018 JS
ECMAScript (JavaScript)
no description available
Submitted by
Denis Efremov <efremov.a.denis@gmail.com>
-
6 years ago
0
Require Node.js regex advanced JS
ECMAScript (JavaScript)
no description available
Submitted by
Denis Efremov <efremov.a.denis@gmail.com> [FORK]
-
6 years ago
0
files containing [rgo1] ending [.html]
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
davekeane select certain and ignore certain characters or words
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Validate UrlParams
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Validate format data (mm/dd)
ECMAScript (JavaScript)
no description available
Submitted by
Gamilo
-
6 years ago
0
time
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Celulares - Tamanho de tela
Golang
no description available
Submitted by
anonymous
-
6 years ago
1
...
102
103
104
105
106
...
182
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