Nodejs String Replace replaceAll(search, replacement)

Here you can find the source of replaceAll(search, replacement)

Method Source Code

String.prototype.replaceAll = function (search, replacement) {
   var target = this;
   var s1 = search.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
   return target.replace(new RegExp(s1, 'g'), replacement);
};

Related

  1. replaceAll(search, replacement)
    String.prototype.replaceAll = function(search, replacement) {
        var target = this;
        return target.replace(new RegExp(search, 'g'), replacement);
    };
    let str = 'Linked Lists - Adding To Head';
    let newStr = str.replaceAll(' ', '-');
    console.log(newStr);
    function factorial(num) {
      if (num == 1 || num == 0) return 1;
    ...
    
  2. replaceAll(search, replacement)
    String.prototype.replaceAll = function(search, replacement){
      var str = this;
      return str.split(search).join(replacement);
    };
    
  3. replaceAll(search, replacement)
    'use strict';
    String.prototype.replaceAll = function(search, replacement) {
      var target = this;
      return target.split(search).join(replacement);
    };
    
  4. replaceAll(search, replacement)
    String.prototype.replaceAll = function (search, replacement) {
        var escapeRegExp = (str) => {
            return str.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1");
        var target = this;
        return target.replace(new RegExp(escapeRegExp(search), 'g'), replacement);
    };
    
  5. replaceAll(search, replacement)
    String.prototype.replaceAll = function (search, replacement) {
        var ret = this.toString().replace(search, replacement);
        while (ret.indexOf(search)!=-1) {
            ret = ret.replace(search, replacement);
        return ret;
    };
    String.prototype.trim = function () {
        return this.replace(/^\s+|\s+$/gm, '');
    ...
    
  6. replaceAll(source, target)
    String.prototype.replaceAll = function (source, target) {
      return this.replace(new RegExp(source, "g"), target);
    };
    
  7. replaceAll(source,target)
    String.prototype.replaceAll = function(source,target){
      var val = this;
      while(val.indexOf(source)>-1){
        val = val.replace(source,target);
      return val;
    };
    
  8. replaceAll(str, replaceStr)
    'use strict';
    String.prototype.replaceAll = function(str, replaceStr) {
        return this.replace(new RegExp(str, 'gm'), replaceStr);
    };
    
  9. replaceAll(str, replacement)
    String.prototype.replaceAll = function(str, replacement) {
      var regex;
      regex = new RegExp(str, "ig");
      return this.replace(regex, replacement);
    };