1.0.3 • Published 6 years ago

find-same-parts v1.0.3

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

find-same-parts

build status Coverage Status

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']