/string-distance

String distance matcher (based on string-similarity package)

Primary LanguageJavaScript

string-similarity-match

Site | Docs |

The string-similarity wrapper for more common usage

Installation

In a browser: Waiting update for in-browser support

Using npm:

$ npm i -s https://github.com/AndreaCardamone/string-similarity-match.git

Example

const { matchs } = require('string-similarity-match')

let sources = ["foobar", "test"];
let targets = ["toobar", "foo-bar", "barfoo", "test", "fest", "cest"];
let m = matchs({ sources, targets });

// the match of "[foobar, test]" from "[toobar, foo-bar, barfoo, test, fest, cest] is {"foobar":"foo-bar","test":"test"}
console.log(`the match of "${source}" from "[${targets.join(', ')}] is ${m}`);
const { matchs } = require('string-similarity-match')

let targets = JSON.parse(readFileSync('./sources.json', 'utf8'))
let sources = [
  {value: `"ELEONORE O' KON" <stephen91@gmail.com>`},
  {value: `Chaim Bogan<Gregoria_McKenzie@yahoo.com>`}
]
let m = matchs({
  sources, targets,
  log: true,
  source_getter: d => d.value,
  target_getter: d => `${d.firstname} ${d.lastname} ${d.email}`,
  threshold: 0.7,
  match_callback: ({ source, target, score }) => source.score = score,
})

console.log(m)

Related