Giter Site home page Giter Site logo

willdera / strdiff Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 22 KB

Strdiff is a library for calculating string differences. It leverages efficient algorithms such as the Levenshtein distance and the Damerau-Levenshtein distance.

License: MIT License

Rust 100.00%
algorithm damerau-levenshtein levenshtein-distance rust wapm wasmer

strdiff's Introduction

Strdiff

Strdiff is a library for calculating string differences. It leverages efficient algorithms such as the Levenshtein distance and the Damerau-Levenshtein distance.

How to use:

NOTE: This requires a language that supports WebAssembly

Yarn/NPM example

  • Install wapm package to yarn project wasmer add --yarn willdera/strdiff

  • Install wapm package to npm project wasmer add --npm willdera/strdiff

  • Import and use

// index.js
import {bindings} from "@willdera/strdiff";

async function main() {
    const strdiff = await bindings.strdiff();
    
    // tag: 0 -> string
    // tag: 1 -> Vector of string
    let strdiff_check = strdiff.lvd({tag: 0, val: "Hello"}, {tag: 0, val: "Hella"});
    
    // tag: "ok" -> Successful execution
    // tag: "err" -> Failed execution
    console.log(strdiff_check); // { tag: 'ok', val: { tag: 0, val: 1 } }
}

The example above returns a Levenshtein distance of 1, represented as val: 1 in { tag: 0, val: 1 }

NOTE: The example above showcases Levenshtein distance, same approach can be followed for Damerau-Levenshtein distance by replacing strdiff.lvd(...) with strdiff.dlvd(...), same argument data-types would work.

strdiff's People

Contributors

willdera avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.