Last active
November 14, 2024 02:17
-
-
Save cjaoude/fd9910626629b53c4d25 to your computer and use it in GitHub Desktop.
Test list of Valid and Invalid Email addresses
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Use: for testing against email regex | |
ref: http://codefool.tumblr.com/post/15288874550/list-of-valid-and-invalid-email-addresses | |
List of Valid Email Addresses | |
email@example.com | |
firstname.lastname@example.com | |
email@subdomain.example.com | |
firstname+lastname@example.com | |
email@123.123.123.123 | |
email@[123.123.123.123] | |
"email"@example.com | |
1234567890@example.com | |
email@example-one.com | |
_______@example.com | |
email@example.name | |
email@example.museum | |
email@example.co.jp | |
firstname-lastname@example.com | |
List of Strange Valid Email Addresses | |
much.”more\ unusual”@example.com | |
very.unusual.”@”.unusual.com@example.com | |
very.”(),:;<>[]”.VERY.”very@\\ "very”.unusual@strange.example.com | |
List of Invalid Email Addresses | |
plainaddress | |
#@%^%#$@#$@#.com | |
@example.com | |
Joe Smith <email@example.com> | |
email.example.com | |
email@example@example.com | |
.email@example.com | |
email.@example.com | |
email..email@example.com | |
あいうえお@example.com | |
email@example.com (Joe Smith) | |
email@example | |
email@-example.com | |
email@example.web | |
email@111.222.333.44444 | |
email@example..com | |
Abc..123@example.com | |
List of Strange Invalid Email Addresses | |
”(),:;<>[\]@example.com | |
just”not”right@example.com | |
this\ is"really"not\allowed@example.com |
This answers all the regex questions about email: https://youtu.be/mrGfahzt-4Q?feature=shared&t=992
We don't want answers about email, we want answers about what IMO stands for
This answers all the regex questions about email: https://youtu.be/mrGfahzt-4Q?feature=shared&t=992
We don't want answers about email, we want answers about what IMO stands for
It's Means Ok
This is why English can be confusing sometimes, specially for foreigners.
really ok
ok
ok
I see no tests for email addresses like example-@domain.com, i.e., with a nonalphanumeric character next to the @.
I see no tests for email addresses like example-@domain.com, i.e., with a nonalphanumeric character next to the @.
ok
ok
ok
ok
ok
ok
ok
ok
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This answers all the regex questions about email: https://youtu.be/mrGfahzt-4Q?feature=shared&t=992