Skip to content

Instantly share code, notes, and snippets.

@patrbraun
patrbraun / Regex-Tutorial.md
Last active July 8, 2021 04:21
Describing matching an Email regex expression: `/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/`

Regex-Tutorial

Introductory paragraph (replace this with your text)

Summary

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

Table of Contents