atomescrochus / laravel-string-similarities by jpmurray

Compare two string and get a similarity percentage
72,822
69
6
Package Data
Maintainer Username: jpmurray
Maintainer Contact: jp@atomescroch.us (Jean-Philippe Murray)
Package Create Date: 2017-01-08
Package Last Update: 2022-10-27
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:01:34
Package Statistics
Total Downloads: 72,822
Monthly Downloads: 2,590
Daily Downloads: 170
Total Stars: 69
Total Watchers: 6
Total Forks: 20
Total Open Issues: 0

laravel-string-similarities

Latest Stable Version License Total Downloads

Compare two string and get a similarity percentage. Note that I did not write the algorithms myself, see down this document for the full credits.

Some methods are usable in production, some are not, see usage for informations. Pull requests are more than welcomed!

Install

You can install this package via composer:

$ composer require atomescrochus/laravel-string-similarities

Then you have to install the package' service provider, unless you are running Laravel >=5.5 (it'll use package auto-discovery) :

// config/app.php
'providers' => [
    ...
    Atomescrochus\StringSimilarities\StringSimilaritiesServiceProvider::class,
];

Usage

$comparison = new \Atomescrochus\StringSimilarities\Compare();

// the functions returns similarity percentage between strings
$jaroWinkler = $comparison->jaroWinkler('first string', 'second string'); // JaroWinkler comparison
$levenshtein = $comparison->levenshtein('first string', 'second string'); // Levenshtein comparison
$smg = $comparison->smg('first string', 'second string'); // Smith Waterman Gotoh comparison
$similar = $comparison->similarText('first string', 'second string'); // Using "similar_text()"

// This next one will return an array containing the results of all working comparison methods
// plus an array of 'data' that includes the first and second string, and the time in second it took to run all
// comparison. BE AWARE that comparing long string can results in really long compute time!
$all = $comparison->all('first string', 'second string');

Change log

Please see CHANGELOG for more information on what has changed recently.

Testing

Coming.

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email jp@atomescroch.us instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.