Answers for "multiple line find and replace"

0

multiple replace

var str = '[T] and [Z] but not [T] and [Z]';
var result = str.replace('T',' ').replace('Z','');
console.log(result);
Posted by: Guest on May-12-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language