replece 使用函数作为第二参数

    var a = "The boy is gay.";

    var b = /boy/; 

    console.log(b) —— /boy/                      x相当于给他加一个 "" 转义

    var c = a.replace(b, function (s) {          s是a中匹配到的元素即在a中找到b

        return "girl";

    });        

    console.log(c) —— 输出 The girl is gay. 

上一篇:Gale-Shapley算法


下一篇:python 使用exchange发送邮件