Nodejs String Replace replaceAll(target, replacement)

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

Method Source Code

String.prototype.replaceAll = function(target, replacement) {
    return this.split(target).join(replacement);
};


function getDbStatements(statement, positions) {

    var statement1 = statement.replaceAll("{lon}", positions[0].longitude).replaceAll("{lat}", positions[0].latitude);
    var statement2 = statement.replaceAll("{lon}", positions[1].longitude).replaceAll("{lat}", positions[1].latitude);
    var statement3 = statement.replaceAll("{lon}", positions[2].longitude).replaceAll("{lat}", positions[2].latitude);

    return [statement1, statement2, statement3];
}

module.exports = { "getDBStatements": getDbStatements };

Related

  1. replaceAll(string, find, replace)
    function replaceAll(string, find, replace) {
      return string.replace(new RegExp(escapeRegExp(find), 'g'), replace);
    
  2. replaceAll(stringAntiga, stringNova)
    String.prototype.replaceAll = function (stringAntiga, stringNova) {
        return this.split(stringAntiga).join(stringNova);
    };
    
  3. replaceAll(stringToFind,stringToReplace)
    karotz.connectAndStart = function(host, port, callback, data){  
        try{
            karotz.connect(host, port);
          log("connected");
          karotz.start(callback, data);
        }catch(err){
          log(err);
    };
    ...
    
  4. replaceAll(substr, newstring)
    String.prototype.replaceAll = function(substr, newstring){
        var temp = this;
        var index = temp.indexOf(substr);
        while(index != -1){
            temp = temp.replace(substr, newstring);
            index = temp.indexOf(substr);
        return temp;
    
  5. replaceAll(target, replacement)
    String.prototype.replaceAll = function(target, replacement) {
      return this.split(target).join(replacement);
    };
    
  6. replaceAll(targetString, sourceString)
    "use strict()";
    String.prototype.replaceAll = function (targetString, sourceString) {
        var inputString = this;
        inputString = inputString.replace(new RegExp(targetString, 'gi'), sourceString);
        return inputString;
    };
    
  7. replaceAll(textToFind, newText)
    String.prototype.replaceAll = function(textToFind, newText) {
      current = this.toString();
      return current.split(textToFind).join(newText);
    
  8. replaceAll(toReplace, replacee)
    var testString = ' This string is  made with the purpose  of having white spaces which can then be  replaced with "&nbsp".';
    String.prototype.replaceAll = function(toReplace, replacee) {
        var workString = this;
        while (workString.indexOf(toReplace) > -1) {
            workString = workString.replace(toReplace, replacee);
        return workString;
    var workedOn = testString.toUpperCase().replaceAll(' ', '&nbps');
    ...
    
  9. replaceAll(toReplace, replacee)
    String.prototype.replaceAll = function(toReplace, replacee) { 
        var workString = this;
        while (workString.indexOf(toReplace) > -1) {
            workString = workString.replace(toReplace, replacee);
        return workString;
    var testString = '<p>Please visit <a href="http://academy.telerik.com">our site</a> to choose a training course. Also visit <a href="www.devbg.org">our forum</a> to discuss the courses.</p>';
    var workString = testString.replaceAll('</a>', '[/URL]');
    ...