Nodejs String Replace replaceAll(

Here you can find the source of replaceAll(

Method Source Code

String.prototype.replaceAll = function( 
  strTarget,/*from   w ww . j  av a 2s  .co  m*/
  strSubString
  ){
    var strText = this;
    var intIndexOfMatch = strText.indexOf( strTarget );

    while (intIndexOfMatch != -1)
    {
      strText = strText.replace( strTarget, strSubString )
      intIndexOfMatch = strText.indexOf( strTarget );
    }

  return(strText);
}

Related

  1. replaceAll
    ===
    
  2. replaceAll( searchStr, replaceStr )
    String.prototype.replaceAll = function( searchStr, replaceStr ) {
        var temp = this;
        while( temp.indexOf( searchStr ) != -1 ){
            temp = temp.replace( searchStr, replaceStr );
        return temp;
    
  3. replaceAll( token, newToken, ignoreCase )
    String.prototype.replaceAll = function( token, newToken, ignoreCase ) {
        var _token;
        var str = this + "";
        var i = -1;
        if ( typeof token === "string" ) {
            if ( ignoreCase ) {
                _token = token.toLowerCase();
                while( (
                    i = str.toLowerCase().indexOf(
    ...
    
  4. replaceAll( token, newToken, ignoreCase )
    String.prototype.replaceAll = function( token, newToken, ignoreCase ) {
        var _token;
        var str = this + "";
        var i = -1;
        if ( typeof token === "string" ) {
            if ( ignoreCase ) {
                _token = token.toLowerCase();
                while( (
                    i = str.toLowerCase().indexOf(
    ...
    
  5. replaceAll( token, newToken, ignoreCase )
    String.prototype.replaceAll = function( token, newToken, ignoreCase ) {
        var _token;
        var str = this + "";
        var i = -1;
        if ( typeof token === "string" ) {
            if ( ignoreCase ) {
                _token = token.toLowerCase();
                while( (
                    i = str.toLowerCase().indexOf(
    ...