Socket
Socket
Sign inDemoInstall

string-multiple-replace

Package Overview
Dependencies
0
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    string-multiple-replace

Replace multiple substrings in a string in turn


Version published
Weekly downloads
1.4K
increased by12.62%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

string-multiple-replace

Replace multiple substrings in a string in turn.

Replace all substring matches in a string with an mapping object that is table of replaceThis: withThis, and you can provide a suquencer to decide the order of replacement.

Install

$ npm install --save string-multiple-replace

Usage

  • 1
const mulReplace = require('string-multiple-replace');

const input = "I'm only brave when I have to be. Being brave doesn't mean you go looking for trouble.";

const matcherObj = {
    "brave": "cowardly",
    "trouble": "escape"
}

const matcherObj = ["brave", "trouble"];

mulReplace(input, matcherObj, true, sequencer);
//I'm only cowardly when I have to be. Being cowardly doesn't mean you go looking for escape.

  • 2
const mulReplace = require('string-multiple-replace');

const input = "I'm only brave when I have to be. Being brave doesn't mean you go looking for trouble.";

const matcherObj = {
    "brave": "cowardly",
    "trouble": "escape"
}

mulReplace(input, matcherObj, true, function(keys) {
    return keys; //or keys.sort(callback)
});
//I'm only cowardly when I have to be. Being cowardly doesn't mean you go looking for escape.

  • 3
const mulReplace = require('string-multiple-replace');

const input = "abcd, abcd";

const matcherObj = {
    "a": "b",
    "b": "a"
}

mulReplace(input, matcherObj, false, Object.keys(matcherObj));
//bacd, bacd

API

stringReplacer(input, matcherObj, [needCover,] sequencer)

The original string is replaced in turn according to the matcherObj, where sequencer determines the replacement order, and needCover determines whether to replace the last replacement data in the execution.

input

Type: string
Required

A string to be processed.

matcherObj

Type: object
Required

An object that represents a string replacement mapping.

needCover

Type: boolean
Default: false

A boolean determines whether to replace the last replacement data in the execution.

sequencer

Type: function, array
Required

A function that takes the keys of matcherObj, and return an suquence array.

Keywords

FAQs

Last updated on 23 Aug 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc