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 5,940 community submitted regex patterns...
0
MAC address
Python
6 pairs of hexadecimal characters separated by either 5 dashes, or 5 colons, or no separators at all. Mixture of separators not allowed.
Submitted by
anonymous
-
8 years ago
0
Exclude free emails
Python
no description available
Submitted by
anonymous
-
8 years ago
0
Newt word in text
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Date-Time
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Regex dat URL
ECMAScript (JavaScript)
When you need to get parts of your URL nicely.
Submitted by
anonymous
-
8 years ago
0
Remove Comma, Spaces and Middle Initial
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Phone number extraction
ECMAScript (JavaScript)
I have +919535872103 adf I have +91-9535872103 adf I have +91(953)5872103 adf I have +91-(953)5872103 adf I have +91-(953) 5872103 adf I have +91 (953) 5872103 adf...
Submitted by
anonymous
-
8 years ago
0
Twitter hashtags
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
()
Python
no description available
Submitted by
anonymous
-
8 years ago
0
Check a date in an invoice
Python
no description available
Submitted by
anonymous
-
8 years ago
0
For VM - Match on grub if elevator=noop is present or not
Python
name: OPITMIZ | GRUB | Set DISK Scheduler a elevator=noop lineinfile: dest: /etc/default/grub regexp: '^(GRUB_CMDLINE_LINUX_DEFAULT=(?!.elevator=noop).)\"' line: '\1 elevator=noop"' backrefs: yes...
Submitted by
Pintax
-
8 years ago
0
sort3
Python
no description available
Submitted by
anonymous
-
8 years ago
0
Match fstab for add noatime and noadirtime
Python
var: grub_opts: 'elevator=noop' name: OPTIMIZ | FSTAB | Set {{ fstab_opts }} replace: dest: /etc/fstab...
Submitted by
anonymous
-
8 years ago
0
Look first character that are special chracters
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Email
ECMAScript (JavaScript)
Regex to validate and get info from email string
Submitted by
anonymous
-
8 years ago
0
California Medicaid (Medi-Cal) ID Validator
ECMAScript (JavaScript)
California Medicaid (Medi-Cal) ID Validator Verifies a series of 8 Digits, 1 Char, and 5 Digits together.
Submitted by
anonymous
-
8 years ago
0
match \
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
TELÉFONO INTERNACIONAL
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
DNI español
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
CCC
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
1
...
125
126
127
128
129
...
297
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
[
A
-
Za
-
z._
]
{3,}
@
[
A_Za
-
z
]
{3,10}
[
.
]
{1}
[
A
-
Za
-
z.
]
{2,6}
/
gm
Open regex in editor
Description
This is an Email validation using RegExp.
Submitted by
anonymous
-
a year ago