“JavaScript Regex Substitua” Respostas de código

Substitua todas as ocorrências de uma corda em JavaScript

const p = 'The quick brown fox jumps over the lazy dog. If the dog reacted, was it really lazy?';

console.log(p.replaceAll('dog', 'monkey'));

// expected output: "The quick brown fox jumps over the lazy monkey. If the monkey reacted, was it really lazy?"



Batman

JavaScript Regex Substitua

const search = 'duck'
const replaceWith = 'goose';

const result = 'duck duck go'.replaceAll(search, replaceWith);

result; // => 'goose goose go'
Powerful Penguin

STR Substitua JavaScript All

str.replace(/abc/g, '');
Amin :)

Substitua todos os JavaScript

str.split(search).join(replacement);
Strange Shrew

Respostas semelhantes a “JavaScript Regex Substitua”

Perguntas semelhantes a “JavaScript Regex Substitua”

Mais respostas relacionadas para “JavaScript Regex Substitua” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código