find-same-parts
v1.0.3
Published
List the same parts from two given strings
Downloads
8
Maintainers
Readme
find-same-parts
Find the same parts from two given strings
Install
$ npm install find-same-parts --save
Usage
findSameParts(firstString, secondString, options);
// will return the sames part in array
// options
// * minStrLength {INT}, set the minimum length of same parts
// * ignoreCase {Boolean}
e.g.
var findSameParts = require('find-same-parts');
findSameParts('hello world', 'Hello world'); // ['hello world']
findSameParts('hello world', 'Hello world', {ignoreCase: false}); // ['ello world']
findSameParts('hello world, bot', 'hello somebody, bot'); // ['hello', 'bot']
findSameParts('hello world, bot', 'hello somebody, bot', {minStrLength: 4}); ['hello']