replaceall
v0.1.6
Published
Replace all instances in a JavaScript string
Downloads
1,151,276
Maintainers
Readme
replaceall
Replace all instances in a JavaScript string.
Install with npm
npm install replaceall
To then include replaceall in your node app:
var replaceall = require("replaceall");
Using replaceall
var result = replaceall("instances of this", "with this string", "in this string");
Example
var original = "hello world goodbye world";
replaceall("world", "everyone", original);
// "hello everyone goodbye everyone"
replaceall("l", "z", original);
// "hezzo worzd goodbye worzd"