“Expresiones зарегистрирует JavaScript” Ответ

Переменная перемещение к литеральной нотации 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

Expresiones зарегистрирует JavaScript

var text = "este es un texto de prueba";
var regEx = /este/gi;

console.log(regEx.test(text)) // true
Antoniotonio

Регулярное выражение JavaScript

// Tests website Regular Expression against document.location (current page url)
if (/^https\:\/\/example\.com\/$/.exec(document.location)){
	console.log("Look mam, I can regex!");
}
Kaotik

Ответы похожие на “Expresiones зарегистрирует JavaScript”

Вопросы похожие на “Expresiones зарегистрирует JavaScript”

Больше похожих ответов на “Expresiones зарегистрирует JavaScript” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования