“reemplazar muchos chractters js” Código de respuesta

reemplazar muchos chractters js

// You can use regex to do it in only one replace
// Using the or: |
var str = '#this #is__ __#a test###__';
str.replace(/#|_/g,''); // result: "this is a test"
// Or using the character class 
str.replace(/[#_]/g,''); // result: "this is a test"
Fusinato

Reemplazo múltiple

var str = '[T] and [Z] but not [T] and [Z]';
var result = str.replace('T',' ').replace('Z','');
console.log(result);
Ill Iguana

Respuestas similares a “reemplazar muchos chractters js”

Preguntas similares a “reemplazar muchos chractters js”

Más respuestas relacionadas con “reemplazar muchos chractters js” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código