str-replace
v0.0.5
Published
Replace Strings like a boss
Maintainers
Readme
JavaScript String Replace
A simple, lightweight, functional JavaScript API for replacing a String like a boss
- No dependency
- Fluent interface
Why?
Code is read much more often than it is written, so plan accordingly, any experienced developer knows that.
The above principle has been ignored for some trivial operations, such as replacing a String. Not anymore.
Try to understand the expected output of the code below:
replaceAll( "bus", "road", "Get on the road", true );You can't understand the order and meaning of the arguments without looking into the documentation first to make sure it does what you want.
- Does the guy who wrote this is aware of the Principle_of_least_astonishment to replace the first argument from the second? Is it replacing all "bus" to "road"? Or all "road" to "bus"?
- What does that Boolean Trap means?
If you need to look elsewhere to be able to understand something, then something is wrong.
What if you could tell the computer to "Replace all occurrences ignoring the case from target with replacement"?
const occurrences = "road";
const target = "Get on the Road";
const replacement = "bus";
const result = replace.all( occurrences ).ignoringCase().from( target ).with( replacement );
console.log(result); // => Get on the busOr, if you don't want to use variables:
const result = replace.all( "road" ).ignoringCase().from( "Get on the Road" ).with( "bus" );
console.log(result); // => Get on the busTcharam! This changes how you replace strings.
Stop being imperative and start being functional, the next developer say "Thanks".
Installation
Install via npm:
$ npm install str-replace --saveRequire in the file you want to use it:
var replace = require("str-replace");Basic Usage
Replace the first dot to space:
replace(".").from("John.Doe.Company").with(" "); // => "John Doe.Company"Replace the first characters ignoring the case when matching:
replace("hey").from("HEY, DON'T SAY HEY!").with("YO"); // => "YO, DON'T SAY HEY!"Replace all dots to spaces:
replace.all(".").from("John.Doe.Company").with(" "); // => John Doe CompanyReplace all characters ignoring the case when matching:
replace.all("hey").from("HEY, DON'T SAY HEY!").with("YO"); // => "YO, DON'T SAY YO!"API
replace( occurrences )
Creates a ReplaceDefinition that will replace the first substring that
matches the occurrences.
Receives an occurrences, which is a String representing what is going to
be replaced.
Example:
replace( "e" ); // => ReplaceDefinitionreplace.all( occurrences )
Creates a ReplaceDefinition that will replace all substrings that
matches the occurrences.
Receives an occurrences, which is a String representing what is going to
be replaced.
Example:
replace.all( "dreaming" ); // => ReplaceDefinitionReplaceDefinition
Contains the strategy for the replace.
ignoringCase()
Creates a ReplaceDefinition that will ignore the case when matching the
occurrences.
Example:
replace( "java" ).ignoringCase(); // => ReplaceDefinitionfrom( target )
Creates a ReplaceOperation that will replace the given target.
Receives a target, which is a String representing from where it
is going to be replaced.
Example:
replace( "Thunder" ).from( "Thunderstorm" ); // => ReplaceOperationReplaceOperation
Contains the algorithm representing what should be replaced.
with( replacement )
Creates a String replacing with the given replacement according to the
rules of the ReplaceDefinition.
Receives a replacement, which is a String representing the new substring to
be replaced.
Example:
var result = replace( "Java" ).from( "Java is not JavaScript" ).with( "Type" );
console.log( result ); // => Type is not TypeScriptManual release steps
- Increment the "version" attribute of
package.json - Commit with the message "Release version x.x.x"
- Create version tag in git
- Create a github release
- Release on npm
