“lulus variabel ke notasi literal regrex javascript” Kode Jawaban

JavaScript Gunakan variabel Regex

// CREATE A REGEXP object
var replace = "regex";
var re = new RegExp(replace,"g");
//then use
"mystring".replace(re, "newstring")
GutoTrosla

lulus variabel ke notasi literal regrex javascript

// If you want to get ALL occurrences (g), be case insensitive (i), and use boundaries so that it isn't a word within another word (\\b):

re = new RegExp(`\\b${replaceThis}\\b`, 'gi');

// example:

let inputString = "I'm John, or johnny, but I prefer john.";
let replaceThis = "John";
let re = new RegExp(`\\b${replaceThis}\\b`, 'gi');
console.log(inputString.replace(re, "Jack")); // I'm Jack, or johnny, but I prefer Jack.
Kelly

Jawaban yang mirip dengan “lulus variabel ke notasi literal regrex javascript”

Pertanyaan yang mirip dengan “lulus variabel ke notasi literal regrex javascript”

Lebih banyak jawaban terkait untuk “lulus variabel ke notasi literal regrex javascript” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya