Creates a list of ExtractedResult which contains all the choices with
their corresponding score where higher is more similar.
Uses WeightedRatio as the default algorithm
getter is optional for String types, but MUST NOT be null for any other
types
Returns a sorted list of ExtractedResult without any cutoffs.
Uses WeightedRatio as the default algorithm.
getter is optional for String types, but MUST NOT be null for any other
types
Returns a sorted list of ExtractedResult which contains the top limit
most similar choices. Will reject any items with scores below the cutoff.
Default cutoff is 0.
Uses WeightedRatio as the default algorithm.
getter is optional for String types, but MUST NOT be null for any other
types
Inconsistent substrings lead to problems in matching.
This ratio uses a heuristic called "best partial" for when two strings are
of noticeably different lengths.
Splits the strings into tokens and computes intersections and remainders
between the tokens of the two strings. A comparison string is then
built up and is compared using the partial ratio algorithm.
Useful for strings where words appear redundantly.
Splits the strings into tokens and computes intersections and remainders
between the tokens of the two strings. A comparison string is then
built up and is compared using the simple ratio algorithm.
Useful for strings where words appear redundantly.