postfix_distance {RapidFuzz} | R Documentation |
Postfix Distance
Description
Calculates the distance between the postfixes of two strings.
Usage
postfix_distance(s1, s2, score_cutoff = NULL)
Arguments
s1 |
A string to compare. |
s2 |
Another string to compare. |
score_cutoff |
A threshold for the distance score (default is the maximum possible size_t value). |
Value
An integer representing the postfix distance.
Examples
postfix_distance("string1", "string2")
[Package RapidFuzz version 1.0 Index]