Skip to content

Instantly share code, notes, and snippets.

View jsramraj's full-sized avatar
🎯
Focusing on the custom tooltip library for android

Ramaraj T jsramraj

🎯
Focusing on the custom tooltip library for android
View GitHub Profile
@Abduler21
Abduler21 / Tutorial.md
Last active March 8, 2022 14:07
REGEX TUTORIAL

Regular Expression Tutorial

This tutorial is meant to be a foundational reference guide for anyone learning Regular Espressions. By the end of this tutorial you will know what a regular expression is, when to use them, all of their different functionality, as well as some cool tips on how to improve your own regex scripting. Throughout this tutorial we'll be referencing a specific regular expression, breaking down each component and learning about the functionality of each part.

Summary

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