“Ganti banyak chracters js” Kode Jawaban

Ganti banyak 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

Beberapa ganti

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

Jawaban yang mirip dengan “Ganti banyak chracters js”

Pertanyaan yang mirip dengan “Ganti banyak chracters js”

Lebih banyak jawaban terkait untuk “Ganti banyak chracters js” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya