Skip to content

Instantly share code, notes, and snippets.

View maxhealy01's full-sized avatar

Max Healy maxhealy01

View GitHub Profile
@maxhealy01
maxhealy01 / gist-template.md
Last active October 6, 2022 07:24
RegEx Tutorial for Match an Email

Matching Email Regular Expression

In this tutorial, I'm going to introduce one of the more commonly used Regular Expressions and, by describing how it works, explain some important regex concepts.

Summary

We will be walking through the following regex, explaining what each component does.

/^([a-z0-9_.-]+)@([\da-z.-]+).([a-z.]{2,6})$/