Nodejs String Replace replaceAll(s1, s2)

Here you can find the source of replaceAll(s1, s2)

Method Source Code

String.prototype.replaceAll = function(s1, s2) {
    return this.replace(new RegExp(s1, "gm"), s2); //g??     
};

String.prototype.replaceAll2Excep = function(s1, s2) {
    var temp = this;
    while (temp.indexOf(s1) != -1) {
        temp = temp.replace(s1, s2);/*from  w ww  .j  a v  a 2  s  . c  om*/
    }
    return temp;
};

String.prototype.Contains = function(str) {
    if (typeof(str) == "string" && this.indexOf(str) >= 0) {
        return true;
    } else {
        return false;
    }
};

Related

  1. replaceAll(reallyDo, replaceWith, ignoreCase)
    String.prototype.replaceAll = function(reallyDo, replaceWith, ignoreCase) {
      if (!RegExp.prototype.isPrototypeOf(reallyDo))
        return this.replace(new RegExp(reallyDo, (ignoreCase ? "gi" : "g")),
            replaceWith);
      else
        return this.replace(reallyDo, replaceWith);
    };
    
  2. replaceAll(reallyDo, replaceWith, ignoreCase)
    String.prototype.replaceAll = function(reallyDo, replaceWith, ignoreCase) {
      if (!RegExp.prototype.isPrototypeOf(reallyDo))
        return this.replace(new RegExp(reallyDo, (ignoreCase ? "gi" : "g")),
            replaceWith);
      else
        return this.replace(reallyDo, replaceWith);
    };
    String.prototype.charLength = function() {
      var len = 0;
    ...
    
  3. replaceAll(replace, value)
    String.prototype.replaceAll = function (replace, value) {
        return this.replace(new RegExp(replace, 'g'), value);
    };
    
  4. replaceAll(replacedText, replaceText)
    String.prototype.replaceAll = function(replacedText, replaceText){
      return this.replace(new RegExp(replacedText, 'gm'), replaceText)
    
  5. replaceAll(s1, s2)
    String.prototype.replaceAll = function(s1, s2) {
        return this.replace(new RegExp(s1, "gm"), s2)
    
  6. replaceAll(search, replace)
    String.prototype.replaceAll = function (search, replace) {
        var string        = this,
            replaceLength = replace.length,
            searchLength  = search.length,
            start         = string.indexOf(search);
        while (start !== -1) {
            string = string.substring(0, start) + replace + string.substring(start + search.length);
            start  = string.indexOf(search, start + replaceLength);
        return string;
    };
    
  7. replaceAll(search, replace)
    String.prototype.replaceAll = function(search, replace)
        if(!replace) 
            return this;
        return this.replace(new RegExp('[' + search + ']', 'g'), replace);
    };
    trim11 = function (str) {
        str = str.replace(/^\s+/, '');
        for (var i = str.length - 1; i >= 0; i--) {
    ...
    
  8. replaceAll(search, replace)
    String.prototype.replaceAll = function(search, replace) {
        if (replace === undefined) {
            return this.toString();
        return this.split(search).join(replace);
    
  9. replaceAll(search, replace)
    String.prototype.replaceAll = function (search, replace) {
      return this.replace(new RegExp(search, 'g'), replace);
    };
    String.prototype.ltrim = function () {
      return this.replace(/^\s+/,"");
    };
    String.prototype.rtrim = function () {
      return this.replace(/\s+$/,"");
    };
    ...