replace-once

1.0.0 • Public • Published

replace-once

npm package version Travis build status npm package downloads code style license

Make multiple replacements in a string without replacing ones that have already been replaced.

Installation

npm install --save replace-once

Usage

replaceOnce(str, find, replace, [ flags ])

const replaceOnce = require('replace-once')
 
var str = 'abc abcd a ab'
var find = ['abcd', 'abc', 'ab', 'a']
var replace = ['a', 'ab', 'abc', 'abcd']
replaceOnce(str, find, replace, 'gi')
//=> 'ab a abcd abc'

Parameters

str (string)

The string to do replacements on.

find (array)

An array of strings to search for when doing replacements. Must be in the same order as their replacement specified inside of the replace parameter. Strings may contain Regular Expressions (regexp).

replace (array)

An array of strings to replace the strings specified inside of the find parameter with. Must be in the same order as their counterpart specified inside of the find parameter.

flags (string)

Optional

RegExp flags to use when doing replacements. (e.g g for global, i for case-insensitive)

License

MIT. See the license.md file for more info.

Package Sidebar

Install

npm i replace-once

Weekly Downloads

650

Version

1.0.0

License

MIT

Unpacked Size

7 kB

Total Files

7

Last publish

Collaborators

  • kodie