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 5,720 community submitted regex patterns...
0
test
Python
test
Submitted by
test
-
3 years ago
0
valid time check
Python
written as a part of the Coursera interacting with the OS course offered via Google
Submitted by
anonymous
-
3 years ago
0
Breakdown datetime stamp into parts (YYYY-MM-DD[T]HH:MM:SS)
ECMAScript (JavaScript)
This will break the datetime string into it's individual parts and add them into named groups.
Submitted by
Tony Hume
-
3 years ago
0
senegal phone number regex
ECMAScript (JavaScript)
Check if the phone number is correct from sénégal
Submitted by
Me
-
3 years ago
0
telephone validator from FCC
ECMAScript (JavaScript)
passes freecodecamp's telephone validator
Submitted by
anonymous
-
3 years ago
0
Practice email validation
ECMAScript (JavaScript)
Solves the practice problem from https://www.sitepoint.com/learn-regex/
Submitted by
Nhi Mai-Do
-
3 years ago
0
parse log file for message type, message, ticket number and user
Python
for the Google interacting with the OS course final project on Coursera
Submitted by
anonymous
-
3 years ago
0
Niledutch voyage regex
Python
s
Submitted by
anonymous
-
3 years ago
0
Lookbehind
ECMAScript (JavaScript)
Example of how to pull a particular piece of the URL
Submitted by
DATA_GATA
-
3 years ago
0
email address
ECMAScript (JavaScript)
email address regex
Submitted by
anonymous
-
3 years ago
0
Trailing dot removal after number sequence
ECMAScript (JavaScript)
The capture group returns only a number with a dot if it has decimal digits, otherwise it is treated as an integer. 1.1 => 1.1 1\. => 1
Submitted by
Stefa168
-
3 years ago
0
Match URL or URI strings
ECMAScript (JavaScript)
Reference: https://stackoverflow.com/a/34669019/369727
Submitted by
https://danlevy.net/
-
3 years ago
0
Numbered List Pattern
Python
Tte pattern to grep the multilayer numbered list bullets: 1. level 1 1.2. level 1.2 1.2.1. level 2.1 1.3. level 1.3 1.4. level xxx...
Submitted by
anonymous
-
3 years ago
0
Setup php source extension regex
ECMAScript (JavaScript)
Setup php source extension regex
Submitted by
anonymous
-
3 years ago
0
regex_investir_bl
Python
guif
Submitted by
guif
-
3 years ago
(Last modified 3 years ago)
0
regex_lumineux_bl
Python
guif
Submitted by
guif
-
3 years ago
0
regex_axe_bl
Python
guif
Submitted by
guif
-
3 years ago
0
regex_sous_sol_bl
Python
guif
Submitted by
guif
-
3 years ago
0
regex_contrat_flex_bl
Python
guif
Submitted by
guif
-
3 years ago
0
10 digit phone number
ECMAScript (JavaScript)
Phone number regex
Submitted by
anonymous
-
3 years ago
1
...
111
112
113
114
115
...
286
import url image
4
Regular Expression
Python
r"
(?:
http:
\/\/
)
(
.
*
?
)
\/
(
.
+
?
)
(?:
\/
|
\?
|
\#
|
$
|
\n
)
\w
*
.
jpg
"
g
Open regex in editor
Description
import url image
Submitted by
bartimeys
-
9 years ago