npm.io
1.0.3 • Published 8 years ago

find-same-parts

Licence
ISC
Version
1.0.3
Deps
0
Size
17 kB
Vulns
0
Weekly
0

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

Keywords