-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
strutil.go
96 lines (84 loc) · 3.38 KB
/
strutil.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
Package strutil provides string metrics for calculating string similarity as
well as other string utility functions. Documentation for all the metrics can
be found at https://pkg.go.dev/github.com/adrg/strutil/metrics.
Included string metrics:
- Hamming
- Jaro
- Jaro-Winkler
- Levenshtein
- Smith-Waterman-Gotoh
- Sorensen-Dice
- Jaccard
- Overlap coefficient
*/
package strutil
import (
"github.com/adrg/strutil/internal/ngram"
"github.com/adrg/strutil/internal/stringutil"
)
// StringMetric represents a metric for measuring the similarity between
// strings. The metrics package implements the following string metrics:
// - Hamming
// - Jaro
// - Jaro-Winkler
// - Levenshtein
// - Smith-Waterman-Gotoh
// - Sorensen-Dice
// - Jaccard
// - Overlap coefficient
//
// For more information see https://pkg.go.dev/github.com/adrg/strutil/metrics.
type StringMetric interface {
Compare(a, b string) float64
}
// Similarity returns the similarity of a and b, computed using the specified
// string metric. The returned similarity is a number between 0 and 1. Larger
// similarity numbers indicate closer matches.
func Similarity(a, b string, metric StringMetric) float64 {
return metric.Compare(a, b)
}
// CommonPrefix returns the common prefix of the specified strings. An empty
// string is returned if the parameters have no prefix in common.
func CommonPrefix(a, b string) string {
return stringutil.CommonPrefix(a, b)
}
// UniqueSlice returns a slice containing the unique items from the specified
// string slice. The items in the output slice are in the order in which they
// occur in the input slice.
func UniqueSlice(items []string) []string {
return stringutil.UniqueSlice(items)
}
// SliceContains returns true if terms contains q, or false otherwise.
func SliceContains(terms []string, q string) bool {
return stringutil.SliceContains(terms, q)
}
// NgramCount returns the n-gram count of the specified size for the
// provided term. An n-gram size of 1 is used if the provided size is
// less than or equal to 0.
func NgramCount(term string, size int) int {
return ngram.Count([]rune(term), size)
}
// Ngrams returns all the n-grams of the specified size for the provided term.
// The n-grams in the output slice are in the order in which they occur in the
// input term. An n-gram size of 1 is used if the provided size is less than or
// equal to 0.
func Ngrams(term string, size int) []string {
return ngram.Slice([]rune(term), size)
}
// NgramMap returns a map of all n-grams of the specified size for the provided
// term, along with their frequency. The function also returns the total number
// of n-grams, which is the sum of all the values in the output map.
// An n-gram size of 1 is used if the provided size is less than or equal to 0.
func NgramMap(term string, size int) (map[string]int, int) {
return ngram.Map([]rune(term), size)
}
// NgramIntersection returns a map of the n-grams of the specified size found
// in both terms, along with their frequency. The function also returns the
// number of common n-grams (the sum of all the values in the output map), the
// total number of n-grams in the first term and the total number of n-grams in
// the second term. An n-gram size of 1 is used if the provided size is less
// than or equal to 0.
func NgramIntersection(a, b string, size int) (map[string]int, int, int, int) {
return ngram.Intersection([]rune(a), []rune(b), size)
}