Skip to content

Instantly share code, notes, and snippets.

@Xavionstar
Xavionstar / Regex_Reduced_to_Relatable_Rhetoric.md
Last active March 26, 2023 07:13
Regex Reduced to Relatable Rhetoric

Regex Tutorial

This tutorial will explain the use of regex, how to implement it, and the proper syntaxes.

Summary

This is an example of regex that will call out anything matching an email format. Anything with the "[email protected]" format.

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