如何在JavaScript中使用replaceAll().........................?

这个问题在这里已经有了答案:

  • 如何在JavaScript中替换所有出现的字符串? 41个答案

  • 你需要做一个全局替换。 不幸的是,你不能用一个字符串参数做这个跨浏览器:你需要一个正则表达式:

    ss.replace(/,/g, 'nt');
    

    g modifer使搜索成为全局。


    你需要在这里使用正则表达式。 请尝试以下

    ss.replace(/,/g,”nt”)
    

    g表示全球取代它。


    这是另一个replaceAll的实现。 希望它能帮助别人。

        String.prototype.replaceAll = function (stringToFind, stringToReplace) {
            if (stringToFind === stringToReplace) return this;
            var temp = this;
            var index = temp.indexOf(stringToFind);
            while (index != -1) {
                temp = temp.replace(stringToFind, stringToReplace);
                index = temp.indexOf(stringToFind);
            }
            return temp;
        };
    

    然后你可以使用它:

    var myText = "My Name is George";                                            
    var newText = myText.replaceAll("George", "Michael");
    
    链接地址: http://www.djcxy.com/p/16837.html

    上一篇: How to use replaceAll() in Javascript.........................?

    下一篇: Javascript replaceAll not working