📌  相关文章
📜  替换字符形式的数组 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:43.799000             🧑  作者: Mango

代码示例1
let str = 'Twas the night before Xmas...';
let newstr = str.replace(/xmas/i, 'Christmas');
console.log(newstr);  // Twas the night before Christmas...