String Similarity
PureStringSimilarityReturns the Levenshtein distance-based similarity between two strings (1.0 = identical).
Type: Pure (no side effects)
Category: Fortuna|String & Text
Keywords: string & text
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| A | FString | — | A parameter |
| B | FString | — | B parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| ReturnValue | float 0-1 | ReturnValue output |
Example Use Cases
Example 1
Detect near-duplicate player names.
Example 2
Spell-check suggestions in a chat system.