fuzzywuzzy icon indicating copy to clipboard operation
fuzzywuzzy copied to clipboard

Java fuzzy string matching implementation of the well known Python's fuzzywuzzy algorithm. Fuzzy search for Java

Results 18 fuzzywuzzy issues
Sort by recently updated
recently updated
newest added

I could see different results are returned when using methods **extractOne** and **extractTop** on the same query string and collections. I have a pretty long list of collection (15k Strings)...

Im trying to compre long string with partialRatio and I always get java.lang.OutOfMemoryError: Java heap space

This can come in handy in a case where the user has implemented a custom equals implementation that may return TRUE even if the resulting string is not the same,...

This fixes a possible OutOfMemory problem and NegativeArraySizeException in diffutils/src/me/xdrop/diffutils/DiffUtils.java. In the `getEditOps()` method of the DiffUtils class, the length of two strings (after removing matching suffix) are used to...

I'm not familiar with the Python version of this; I gather from the readme that there are several different method calls that do different things with matching. I've found: ratio...

when creating the module-info.java file, it generates fuzzywuzzy and says "name unstable". Correcting it to me.xdrop.fuzzywuzzy as the instructions say, says "module me.xdrop.fuzzywuzzy cannot be resolved to a module"

Hi, I noticed when testing the values outputted from the Java implementation that given: s1 = "haeagen dazs" s2 = "liverpool altabrisa" The Java implementation for PartialScore outputs 25, while...

Hi, I am using 1.4.0, this gives a wrong results with partial ratio: ``` FuzzySearch.partialRatio("ttttttttt virtuale ggggggggggggvo zizzrztuta mmmmmle", "virtuale"); ``` the score is `50`, it has to be `100`...