Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 1.12 KB

README.md

File metadata and controls

21 lines (15 loc) · 1.12 KB

splinestein-diffing-algorithm

A string similarity metric diffing algorithm invented by splinestein for primitive chat bot use.

How to use?

  1. Put the module into ReplicatedStorage.
  2. In your script, require it with: local sdiff = require(game:GetService("ReplicatedStorage"):FindFirstChild("StringDiff"))
  3. Run it with ratio, _ = sdiff.compare("Hey is this working?, "Hey this is working?")
  4. First return value is the ratio from 0 - 100, second optional return value is the longest match.
  5. print(ratio)

I've tested this for primitive chat bot use and it's working nicely.

It is worth mentioning that this will have O(n) complexity if iterating over any dataset, so keep the dataset small unless you use better querying techniques on the dataset like FTS.

Hope you enjoy. Feel free to suggest any changes.