替换匹配的模式后,此方法返回一个新字符串。
str.replace(regexp|substr, newSubStr|function)
Regexp - 正则表达式对象。
Substr - 要替换的字符串。
newSubStr - 替换字符串。
function - 创建新字符串的函数。
替换所有匹配后的新字符串。
var str = 'Good Morning';
var newstr = str.replace('Morning', 'Night');
console.log(newstr);
Good Night