Fuzzy Match
PureFuzzyMatchPerforms a fuzzy string match and returns a similarity score. Uses a combination of substring and Levenshtein distance.
Type: Pure (no side effects)
Category: Fortuna|String & Text
Keywords: string & text
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| Input | FString | — | Input parameter |
| Candidate | FString | — | Candidate parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| bMatched | bool | bMatched output |
| Score | float 0-1 | Score output |
Example Use Cases
Example 1
Search bar autocomplete that tolerates typos.
Example 2
Item database search by approximate name.