Created
March 17, 2022 08:13
-
-
Save ramcandrews/07b86e366bc40f4328fe97b279e853fd to your computer and use it in GitHub Desktop.
simple email regex
This file contains 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
[^@ \t\r\n]+@[^@ \t\r\n]+\.[^@ \t\r\n]+ | |
[^@ \\t\\r\\n] matches for anything other than @, space, tab, new lines repetitions of a non-whitespace character. | |
https://ihateregex.io/expr/email/ (04/17/2022) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment