Skip to main content

Command Palette

Search for a command to run...

REGEX - Regular Expression

Updated
1 min read
REGEX - Regular Expression
A

A passionate MERN Stack Developer from India

I am a full stack web developer with experience in building responsive websites and applications using JavaScript frameworks like ReactJS, NodeJs, Express etc.,

W3School: REGEX - Reference Link

function learnPattern(){  
    pattern = /E00/gi;
    pattern = /[abc]/gi;
    pattern = /[^abc]/gi;
    pattern = /[a-d]/gi;
    pattern = /[^a-d]/gi;
    pattern = /[a-zA-Z]/;
    pattern = /[a-zA-Z]ism/gi; 
}

Quick Reference

Example:

Regular Expression (RegEx) in Python : The Basics – Towards AI

Advance DSA

Part 1 of 1

More from this blog

D

DSA in JavaScript

7 posts