Nodejs String Replace replaceNewAll(str1, str2, ignore)

Here you can find the source of replaceNewAll(str1, str2, ignore)

Method Source Code

String.prototype.replaceNewAll = function(str1, str2, ignore) 
{
   return this.replace(new RegExp(str1.replace(/([\/\,\!\\\^\$\{\}\[\]\(\)\.\*\+\?\|\<\>\-\&])/g,"\\$&"),(ignore?"gi":"g")),(typeof(str2)=="string")?str2.replace(/\$/g,"$$$$"):str2);
}

Related

  1. replaceHtmlEntites()
    String.prototype.replaceHtmlEntites = function() {
      var translate_re = /&(nbsp|amp|quot|lt|gt);/g;
      var translate = {'nbsp': ' ', 'amp' : '&', 'quot': '\'','lt'  : '<','gt'  : '>'};
      return (this.replace(translate_re, function(match, entity) {
        return translate[entity];
      }));
    };
    
  2. replaceKeywords(replacements)
    String.prototype.replaceKeywords = function(replacements){
      var str = this;
      for(var key in replacements){
        str = str.replaceAll(key, replacements[key]);
      return str;
    };
    
  3. replaceLast(what, replacement)
    String.prototype.replaceLast = function (what, replacement) {
        return this.reverse().replace(new RegExp(what.reverse()), replacement.reverse()).reverse();
    };
    
  4. replaceList(c,i,s)
    String.prototype.replaceList=function(c,i,s){
      s=s||',';
      var ret=this.split(s);
      ret[i-1]=c;
      return ret.join(s);
    
  5. replaceNbsp()
    var text = 'Write a&nbspfunction&nbspthat&nbspreplaces non breaking&nbsp&nbspwhite-spaces in a&nbsptext with&nbsp.';
    String.prototype.replaceNbsp = function () {
        return this.replace(/&nbsp/g, ' ');
    console.log(text.replaceNbsp());
    
  6. replaceNewLineChars( replacement )
    String.prototype.replaceNewLineChars = function( replacement )
      return this.replace( /\n/g, replacement ) ;
    
  7. replaceOccurencesOfString(search,replacement)
    String.prototype.replaceOccurencesOfString = function(search,replacement){
        return this.split(search).join(replacement);
    
  8. replaceParam(uri, key, value)
    "use strict";
    String.prototype.replaceParam = function (uri, key, value) {
        var re = new RegExp("([?|&])" + key + "=.*?(&|#|$)", "i");
        if (uri.match(re)) {
            return uri.replace(re, '$1' + key + "=" + value + '$2');
        } else {
            var hash =  '';
            if( uri.indexOf('#') !== -1 ){
                hash = uri.replace(/.*#/, '#');
    ...
    
  9. replaceSpaces()
    String.prototype.replaceSpaces = function() {
      var length = this.length;
      for(var i = 0; i < length; i++) {
        if(this[i] == ' ') {
          this[i] = "%20"
      return this.toString();
    console.log("This is my Name".replace(/ /ig, '%20'));