Please enable JavaScript to use this web application.
Regular
Expressions
101
Social
Social
Join the Discord community!
Follow me on twitter!
Send me an email
Donate
Donate
Donate through Paypal
Become a Github Sponsor
Info
Info
Find out what's new!
RegEx101 Wiki
Report bugs or make suggestions
What's new?
Loading content...
Close
Regex Editor
Regex Editor
Community Patterns
Community Patterns
Account
Account
Regex Quiz
Regex Quiz
Settings
Settings
Live Help
Live Help
Get help on Discord
Get help on IRC
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 (C#)
Rust
Sponsors
Community Patterns
Search among 5,820 community submitted regex patterns...
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
C# Generic Parameters
ECMAScript (JavaScript)
no description available
Submitted by
andy cunningham
-
8 years ago
2016-02-15 11:36
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Get Email Address from string
ECMAScript (JavaScript)
no description available
Submitted by
Google
-
8 years ago
2016-02-15 10:17
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
FDQN
ECMAScript (JavaScript)
no description available
Submitted by
Pratheesh ps
-
8 years ago
2016-02-15 08:16
2
2 upvotes, 0 downvotes (score 34.2%) (You must be signed in to vote)
problem for homework
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
2016-02-15 06:28
0
1 upvotes, 1 downvotes (score 9.5%) (You must be signed in to vote)
US Telephone number
ECMAScript (JavaScript)
Regex for validating us telephone number as per freecodecamp testcases-
Submitted by
Yashdeep Hinge
-
8 years ago
2016-02-14 08:05
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
gps 103
ECMAScript (JavaScript)
gps103 gprs communication
Submitted by
anonymous
-
8 years ago
2016-02-13 13:33
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Can't be numeric only
ECMAScript (JavaScript)
It could be alphanumeric but should not be numeric only
Submitted by
anonymous
-
8 years ago
2016-02-12 21:24
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
UK Postal Code
ECMAScript (JavaScript)
Match UK Postal Code
Submitted by
Michael R
-
8 years ago
2016-02-12 05:42
0
1 upvotes, 1 downvotes (score 9.5%) (You must be signed in to vote)
allow Cyrillic and latin alphabets, no special charcters
ECMAScript (JavaScript)
allows email, text and numbers in latin and cyrillic alaphbets.but prevents special charcters: Hello, example@mail.com Меня зовут Боб
Submitted by
Kez
-
8 years ago
2016-02-12 05:23
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
DNS Name
Python
no description available
Submitted by
anonymous
-
8 years ago
2016-02-11 19:07
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
dni con letra
ECMAScript (JavaScript)
dni con letra
Submitted by
cda
-
8 years ago
2016-02-11 17:57
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
moj test regex
ECMAScript (JavaScript)
regex sa vezbi
Submitted by
Mladen
-
8 years ago
2016-02-11 16:22
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
meraki device name
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
2016-02-11 10:38
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Basic URL
ECMAScript (JavaScript)
Matches basic URLs and fails on things that aren't
Submitted by
anonymous
-
8 years ago
2016-02-10 23:14
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Regular expression to Vaildate an Email Address
ECMAScript (JavaScript)
The regular expression uses the basic email address syntex, ulr rules form validating an email address. Watch the complete tutorial on youtube : https://www.youtube.com/watch?v=H6WvPfh7OYw
Submitted by
Rayees Ahmed Shaikh
-
8 years ago
2016-02-10 19:07
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
git release tag
Python
match git tags as: [app-id]-[env-id]-v[m].[n].[p]
Submitted by
gregory nicholas
-
8 years ago
2016-02-09 23:18
2
2 upvotes, 0 downvotes (score 34.2%) (You must be signed in to vote)
test
Python
no description available
Submitted by
anonymous
-
8 years ago
2016-02-09 19:50
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Remove Package Connection data from screen.log
Python
From the Linux Screen.print method, after recording a log which involves some apt-getting, we want to find and trim out all that fat. This is Part 1
Submitted by
anonymous
-
8 years ago
2016-02-08 23:21
0
1 upvotes, 1 downvotes (score 9.5%) (You must be signed in to vote)
Javascript SQL String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
2016-02-08 22:43
2
2 upvotes, 0 downvotes (score 34.2%) (You must be signed in to vote)
Date or N/A
ECMAScript (JavaScript)
Accepts Date or not applicable string.
Submitted by
Toufique Ahmed
-
8 years ago
2016-02-08 14:28
1
...
233
234
235
236
237
238
239
...
291
simple url regex (http,https)
1
2 upvotes, 1 downvotes (score 20.8%) (You must be signed in to vote)
Regular Expression
ECMAScript (JavaScript)
/
https
?
:
\/\/
(
www
.
)?
[
a
-
zA
-
Z
]
+
(
\.
[
a
-
zA
-
Z
]
+
)+
(
\/
(
\w
|
[
-_%.#?=&+
]
)+
)+
/
g
Open regex in editor
Description
Loading markdown...
Submitted by
Pika
-
8 years ago
2016-01-21 10:46