Skip to content

A gestalt pattern matcher module for similarity checks between two strings

License

Notifications You must be signed in to change notification settings

saniales/gestalt-pattern-matcher

Repository files navigation

This is an implementation of the Ratcliff/Obershelp Gestalt pattern-matching algorithm in NodeJS.

Its purpose is to compare two strings and determine approximately how different they are: a score of 0 indicates that they share no characters at all, while a score of 1 indicates that the two strings are identical.

This implementation is suitable for short strings (on the order of 1000 characters long). I haven't thoroughly analyzed complexity, but it is roughly O(n^2) average case, O(n^3) in the worst case, and O(n) in the best case.

Install

Just install it with npm or yarn.

npm install gestalt-pattern-matcher
# or
yarn add gestalt-pattern-matcher

Usage

// ES7
import gestaltSimilarity from "gestalt-pattern-matcher";

const firstString = "Test 1";
const secondString = "Test 2";

console.log(gestaltSimilarity(firstString, secondString));

// commonJS
const gestaltSimilarity = require("gestalt-pattern-matcher").default;

const firstString = "Test 1";
const secondString = "Test 2";

console.log(gestaltSimilarity(firstString, secondString));

Notice

This npm module is based on GitSage gestalt-pattern-matcher repository, whom we personally thank the author for the contributions.

About

A gestalt pattern matcher module for similarity checks between two strings

Resources

License

Stars

Watchers

Forks

Packages