Skip to content

Instantly share code, notes, and snippets.

View mjlars's full-sized avatar

Matthew Larson mjlars

View GitHub Profile
@mjlars
mjlars / README-Template.md
Created July 10, 2022 08:21 — forked from DomPizzie/README-Template.md
A simple README.md template

Project Title

Simple overview of use/purpose.

Description

An in-depth paragraph about your project and overview of use.

Getting Started

@mjlars
mjlars / regex.txt
Last active March 21, 2022 00:25
regex explanation
# Regex Email verification breakdown
Welcome to my basic Regex tutorial explaining a regex expression that will find an email address when used
## Summary
In this snippit, I will explain the different components of a regex expression to verify an email address, and how all the components of it are used to verify said email. The expression we will be looking over is /^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/
## Table of Contents

Regex functionalities

In this little thing im going to go over the basic building blocks in regex

Summary

Im going to explain what each of these things does in regex

Table of Contents