“Замените многие chracters JS” Ответ

Замените многие chracters 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

Несколько замены

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

Ответы похожие на “Замените многие chracters JS”

Вопросы похожие на “Замените многие chracters JS”

Больше похожих ответов на “Замените многие chracters JS” по JavaScript

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

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