Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 447 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 447 Bytes

LetterPairSimilarity

Introduction and License

This is the PHP implementation of Simon White's string matching algorithm, available at http://www.catalysoft.com/articles/StrikeAMatch.html. This implementation is placed in the Public Domain: do whatever you want with it.

Usage Example

require_once('LetterPairSimilarity.class.php');
...
...
$similarity = LetterPairSimilarity::compareStrings('France', 'French Republic');
...