Skip to content

devsnowin/regex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

10 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Something about RegEx 😟

Small note πŸ“

I usually avoided this topic when I was learning Python in college πŸ˜…. It is now time to learn it πŸ“–.

what is RegEx or Regular Expressions?

It's a series of characters that allow us to check for matches. Eg: E-mail validation in forms

RegEx looks like this: ^[a-zA-Z0-9]+(?:\.[a-zA-Z0-9]+)*@[a-zA-Z0-9]+(?:\.[a-zA-Z0-9]+)*$