This file contains hidden or 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
    
  
  
    
  | # 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})$/ |