Author -  Sai gowtham

How to use Variable in a Regular Expression in JavaScript

In this tutorial, we are going to learn about using a variable in a regular expression (regex).

Consider we have a string and we need to remove all yes in that string.

We can do that by using a replace() method.

Example:

const str = "Hello yes what are you yes doing yes"
            // str.replace(regex-pattern,replacevalue)
const newstr = str.replace(/yes/g,'');

console.log(newstr);
//"Hello  what are you  doing "

In the above code, we have passed the regex pattern as an argument to the replace() method instead of that we can store the regex pattern in a variable and pass it to the replace method.

Note: Regex can be created in two ways first one is regex literal and the second one is regex constructor method (new RegExp()).

If we try to pass a variable to the regex literal pattern it won’t work.

const str = "Hello yes what are you yes doing yes"
const removeStr = "yes"
const regex =  `/${removeStr}/g` // wrong way
const newstr = str.replace(regex,''); // won't work

The right way of doing it is by using a regular expression constructor new RegExp().

const str = "Hello yes what are you yes doing yes"
const removeStr = "yes" //variable
const regex =  new RegExp(removeStr,'g'); // correct way
const newstr = str.replace(regex,''); // it works

In the above code, we have passed the removeStr variable as an argument to the new RegExp() constructor method.

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY