ES6 - RegExp replace() 方法



此方法替换匹配的模式后返回一个新的字符串。

语法

str.replace(regexp|substr, newSubStr|function)           

参数详情

  • 正则表达式 − 正则表达式对象。

  • 子串 − 要替换的字符串。

  • 新子串 − 替换字符串。

  • 函数 − 用于创建新字符串的函数。

返回值

替换所有匹配项后的新字符串。

示例

var str = 'Good Morning'; 
var newstr = str.replace('Morning', 'Night'); 
console.log(newstr);  

输出

Good Night     
广告