The purpose of this gist is to create a helpful walkthrough explaining the ins and outs of regular expressions. Regular expressions, or regex for short, are a series of special characters that define a search pattern. Essentially, a regular expression can be used to match a certain RexEx pattern against a string. This is very useful for pulling data and validating the results. This tutorial will follow the example below that can be used to match against an email address.
In this tutorial, I will break down the regular expression below that helps validate for a particular pattern; in this case, we will be validating an email address. This is useful because it looks for an email that matches the correct format via RegEx.
Matching Email-