“String JavaScript Zastąp wiele znaków” Kod odpowiedzi

Wymień wiele Chracterów 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

Wielokrotna wymiana

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

String JavaScript Zastąp wiele znaków

                            {`${tuitionInfo.tuition}`
                                .replace(/\[|\]|"/g,'')
                            }
Annoying Anteater

Odpowiedzi podobne do “String JavaScript Zastąp wiele znaków”

Pytania podobne do “String JavaScript Zastąp wiele znaków”

Więcej pokrewnych odpowiedzi na “String JavaScript Zastąp wiele znaków” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu