Nodejs String Replace replaceAll(strReplace, strWith)

Here you can find the source of replaceAll(strReplace, strWith)

Method Source Code

String.prototype.replaceAll = function(strReplace, strWith) {
    var reg = new RegExp(strReplace, 'ig');
    return this.replace(reg, strWith);
};

Related

  1. replaceAll(str, replaceStr)
    'use strict';
    String.prototype.replaceAll = function(str, replaceStr) {
        return this.replace(new RegExp(str, 'gm'), replaceStr);
    };
    
  2. replaceAll(str, replacement)
    String.prototype.replaceAll = function(str, replacement) {
      var regex;
      regex = new RegExp(str, "ig");
      return this.replace(regex, replacement);
    };
    
  3. replaceAll(str1, str2, ignore)
    String.prototype.replaceAll = function(str1, str2, ignore) 
      return this.replace(new RegExp(str1.replace(/([\/\,\!\\\^\$\{\}\[\]\(\)\.\*\+\?\|\<\>\-\&])/g,"\\$&"),(ignore?"gi":"g")),(typeof(str2)=="string")?str2.replace(/\$/g,"$$$$"):str2);
    
  4. replaceAll(str1, str2, ignore)
    'use strict';
    String.prototype.replaceAll = function(str1, str2, ignore) 
        return this.replace(new RegExp(str1.replace(/([\/\,\!\\\^\$\{\}\[\]\(\)\.\*\+\?\|\<\>\-\&])/g,"\\$&"),(ignore?"gi":"g")),(typeof(str2)=="string")?str2.replace(/\$/g,"$$$$"):str2);
    
  5. replaceAll(str1,str2)
    String.prototype.replaceAll= function(str1,str2){
        return this.replace(new RegExp(str1,"gm"),str2);  
    };
    
  6. replaceAll(string, find, replace)
    function replaceAll(string, find, replace) {
      return string.replace(new RegExp(escapeRegExp(find), 'g'), replace);
    
  7. replaceAll(stringAntiga, stringNova)
    String.prototype.replaceAll = function (stringAntiga, stringNova) {
        return this.split(stringAntiga).join(stringNova);
    };
    
  8. replaceAll(stringToFind,stringToReplace)
    karotz.connectAndStart = function(host, port, callback, data){  
        try{
            karotz.connect(host, port);
          log("connected");
          karotz.start(callback, data);
        }catch(err){
          log(err);
    };
    ...
    
  9. replaceAll(substr, newstring)
    String.prototype.replaceAll = function(substr, newstring){
        var temp = this;
        var index = temp.indexOf(substr);
        while(index != -1){
            temp = temp.replace(substr, newstring);
            index = temp.indexOf(substr);
        return temp;