rpaste/vendor/github.com/xrash/smetrics
Louis Abel 1fe2f9d2a3
update all vendored
2023-12-28 14:56:35 -07:00
..
.travis.yml Update to golang 1.18, update all vendored libraries 2022-10-14 18:22:42 -07:00
LICENSE Update to golang 1.18, update all vendored libraries 2022-10-14 18:22:42 -07:00
README.md Update to golang 1.18, update all vendored libraries 2022-10-14 18:22:42 -07:00
doc.go Update to golang 1.18, update all vendored libraries 2022-10-14 18:22:42 -07:00
hamming.go Update to golang 1.18, update all vendored libraries 2022-10-14 18:22:42 -07:00
jaro-winkler.go Update to golang 1.18, update all vendored libraries 2022-10-14 18:22:42 -07:00
jaro.go Update to golang 1.18, update all vendored libraries 2022-10-14 18:22:42 -07:00
soundex.go update all vendored 2023-12-28 14:56:35 -07:00
ukkonen.go Update to golang 1.18, update all vendored libraries 2022-10-14 18:22:42 -07:00
wagner-fischer.go Update to golang 1.18, update all vendored libraries 2022-10-14 18:22:42 -07:00

README.md

Build Status

smetrics

smetrics is "string metrics".

Package smetrics provides a bunch of algorithms for calculating the distance between strings.

There are implementations for calculating the popular Levenshtein distance (aka Edit Distance or Wagner-Fischer), as well as the Jaro distance, the Jaro-Winkler distance, and more.

How to import

import "github.com/xrash/smetrics"

Documentation

Go to https://pkg.go.dev/github.com/xrash/smetrics for complete documentation.

Example

package main

import (
	"github.com/xrash/smetrics"
)

func main() {
	smetrics.WagnerFischer("POTATO", "POTATTO", 1, 1, 2)
	smetrics.WagnerFischer("MOUSE", "HOUSE", 2, 2, 4)

	smetrics.Ukkonen("POTATO", "POTATTO", 1, 1, 2)
	smetrics.Ukkonen("MOUSE", "HOUSE", 2, 2, 4)

	smetrics.Jaro("AL", "AL")
	smetrics.Jaro("MARTHA", "MARHTA")

	smetrics.JaroWinkler("AL", "AL", 0.7, 4)
	smetrics.JaroWinkler("MARTHA", "MARHTA", 0.7, 4)

	smetrics.Soundex("Euler")
	smetrics.Soundex("Ellery")

	smetrics.Hamming("aaa", "aaa")
	smetrics.Hamming("aaa", "aab")
}