find-same-parts
Version:
List the same parts from two given strings
35 lines (24 loc) • 1.04 kB
Markdown
# find-same-parts
[](https://github.com/chenjihu/findSameParts?branch=master)
[](https://coveralls.io/github/chenjihu/findSameParts?branch=master)
Find the same parts from two given strings
## Install
```bash
$ npm install find-same-parts --save
```
## Usage
```javascript
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.
```javascript
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']
```