Skip to content

Instantly share code, notes, and snippets.

@b1ek
Last active June 21, 2023 10:50
Show Gist options
  • Save b1ek/f5c87734cabc39f18594947498df172c to your computer and use it in GitHub Desktop.
Save b1ek/f5c87734cabc39f18594947498df172c to your computer and use it in GitHub Desktop.
email regex

Email regex

^[^\.][a-zA-Z0-9!#$%&'*+\-\/=?^_`{|}~\.\"\(\),:;<>@\[\\\]]+@(([^\-][\w\d\-\.]{1,63}\.){1,}\w{1,63}|[^\-][\w\d\-\.]{1,63}|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)|([a-f0-9:]+:+)+[a-f0-9]+)$

Matches:

me@blek.codes
me@some.regional.mail.at.blek.codes
uwu@somelocalhostname
mrrpnya@1.1.1.1
ip6@2001:db8:3333:4444:5555:6666:7777:8888

Doesn't match:

john@::ffff:0.0.0.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment