Nodejs String Replace replaceAll(replace, value)

Here you can find the source of replaceAll(replace, value)

Method Source Code

String.prototype.replaceAll = function (replace, value) {
    return this.replace(new RegExp(replace, 'g'), value);
};

Related

  1. replaceAll(org, tag)
    String.prototype.replaceAll = function(org, tag){
      return this.replace(new RegExp(org, 'g'), tag);
    };
    
  2. replaceAll(origin, replace)
    String.prototype.replaceAll = function(origin, replace){
      var regexp = new RegExp(origin,'g');
      return this.replace(regexp,replace);
    };
    
  3. 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);
    };
    
  4. 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);
    };
    
  5. 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;
    ...
    
  6. replaceAll(replacedText, replaceText)
    String.prototype.replaceAll = function(replacedText, replaceText){
      return this.replace(new RegExp(replacedText, 'gm'), replaceText)
    
  7. replaceAll(s1, s2)
    String.prototype.replaceAll = function(s1, s2) {
        return this.replace(new RegExp(s1, "gm"), s2)
    
  8. replaceAll(s1, s2)
    String.prototype.replaceAll = function(s1, s2) {
        return this.replace(new RegExp(s1, "gm"), s2); 
    };
    String.prototype.replaceAll2Excep = function(s1, s2) {
        var temp = this;
        while (temp.indexOf(s1) != -1) {
            temp = temp.replace(s1, s2);
        return temp;
    ...
    
  9. 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;
    };