Download the PHP package henrik9999/string-similarity without Composer
On this page you can find all versions of the php package henrik9999/string-similarity. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download henrik9999/string-similarity
More information about henrik9999/string-similarity
Files in henrik9999/string-similarity
Package string-similarity
Short Description Finds degree of similarity between two strings, based on Dice's Coefficient, which is mostly better than Levenshtein distance.
License MIT
Informations about the package string-similarity
string-similarity
Finds degree of similarity between two strings, based on Dice's Coefficient, which is mostly better than Levenshtein distance.
This implementation actually treats multiple occurrences of a bigram as unique. The correctness of this behavior is most easily seen when getting the similarity between "GG" and "GGGGGGGG", which should obviously not be 1.
This is a PHP implemenation of the Node.js package string-similarity
Usage
Install using:
In your code:
API
The package contains two methods:
compareTwoStrings(string $string1, string $string2, bool $casesensitive)
Returns a fraction between 0 and 1, which indicates the degree of similarity between the two strings. 0 indicates completely different strings, 1 indicates identical strings. The comparison is case-sensitive by default.
Arguments
- string1 (string): The first string
- string2 (string): The second string
- casesensitive (bool): If the comparison should be case-sensitive
Order does not make a difference.
Returns
(number): A fraction from 0 to 1, both inclusive. Higher number indicates more similarity.
Examples
findBestMatch(string mainString, array targetStrings, bool $casesensitive)
Compares mainString
against each string in targetStrings
.
Arguments
- mainString (string): The string to match each target string against.
- targetStrings (array): Each string in this array will be matched against the main string.
- casesensitive (bool): If the comparison should be case-sensitive.
Returns
(Object): An object with a ratings
property, which gives a similarity rating for each target string, a bestMatch
property, which specifies which target string was most similar to the main string, and a bestMatchIndex
property, which specifies the index of the bestMatch in the targetStrings array.
Examples
Release Notes
1.0.1
- Made some perfomance improvements
1.0.0
- Initial Release
All versions of string-similarity with dependencies
ext-mbstring Version *