字符串的replace() 方法介绍:
replace(pattern, replacement) 方法返回一个新字符串,其中一个、多个或所有匹配的 pattern 被替换为 replacement。pattern 可以是字符串或 RegExp,replacement 可以是字符串或一个在每次匹配时调用的函数。如果 pattern 是字符串,则只会替换第一个匹配项。原始的字符串不会改变。
1.删除指定字符串
const str = 'abcd';
const newStr = str.replace("ab", '');
console.log(newStr); // cd
2.替换指定字符串
const str = 'abcd';
const newStr = str.replace("ab", 'www');
console.log(newStr); // wwwcd