Skip to content

Instantly share code, notes, and snippets.

View brianahlers's full-sized avatar

Brian Ahlers brianahlers

  • Fort Lauderdale, Florida
  • 01:03 (UTC -05:00)
View GitHub Profile
# REGEX and you!
## Summary
REGEX or regular expressions are ways we can give the computer
instructions on how we want it to return data from a search.
We are going to look at how REGEX can be told to parse an email address
/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/