Please enable JavaScript to use regex101
Regular
Expressions
101
Support Regex101
Social
Info
Regex Editor
Community Patterns
Account
Regex Quiz
Order By
Most Recent
Most upvotes
Most downvotes
Highest Score
Lowest Score
Relevance
Filter by Flavor
PCRE2 (PHP)
ECMAScript (JavaScript)
Python
Golang
Java
.NET 7.0 (C#)
Rust
PCRE (Legacy)
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among community submitted regex patterns...
0/512
2
Check Email Validity
Created
·
2023-11-15 10:54
Updated
·
2023-11-15 17:35
Flavor
·
Java
Regular expression to check the email syntax validity. Certainly requires improvement, but it's a good basis to work from. Work with Java and JavaScript.
Submitted by
Alain TOMASIAN <alain.tomasian@kaptus.fr>
1
Email finder
Created
·
2023-03-27 23:58
Flavor
·
Java
Matches with the valid email addresses.
Submitted by
anonymous
0
match name and surname in a name.surname@domain.com email.
Created
·
2023-02-22 14:20
Flavor
·
Java
This will match any words that show up before the @ sign in an email. Digits, dots, commasz and other special characters are ignored.
Submitted by
WojciechW
0
email valid
Created
·
2022-12-12 02:29
Flavor
·
Java
email validation
Submitted by
Hoot
0
Verify email
Created
·
2022-09-24 15:45
Updated
·
2022-09-24 16:53
Flavor
·
Java
Regex for email
Submitted by
anonymous
0
Fixed Email Regex (emailregex.com)
Created
·
2022-06-29 19:14
Flavor
·
Java
An email regex that allows for capitals after the final dot (ie. TEST@GMAIL.COM)
Submitted by
anonymous
0
Email - Works 99% close to oficial Standards
Created
·
2022-06-18 08:09
Flavor
·
Java
Email - Works 99% close to oficial Standards, even better
Submitted by
CryptoCode
0
Email
Created
·
2021-11-11 22:22
Flavor
·
Java
Test e-amil
Submitted by
uk
0
Email Validation Pattern
Created
·
2021-09-28 07:16
Flavor
·
Java
Email Validation Pattern
Submitted by
Aslam Anver
0
email with cyrillic
Created
·
2021-08-04 14:28
Flavor
·
Java
email with cyrillic
Submitted by
Mpchest
0
Email Regex
Created
·
2021-05-15 07:48
Flavor
·
Java
Regex to capture email from Text
Submitted by
Suman Maharjan
Community Library Entry
0
Regular Expression
Created
·
2022-09-24 15:45
Updated
·
2022-09-24 16:53
Flavor
·
Java
"
^
[
\w\d
]
+
@
[
\w\d
]
+
\.
[
\w\d
]
+
$
"
mg
Open regex in editor
Description
Regex for email
Submitted by
anonymous