MathUtilEditDistanceOptions Enumeration |
Namespace: Telogis.GeoBase
Member name | Value | Description | |
---|---|---|---|
None | 0 | ||
IgnorePunctuation | 1 | Excludes characters that return true when calling char.IsPunctuation from the string comparison. | |
AllowTranspositions | 2 | Allows transposed characters as an atomic error type. For example, "boat" vs "baot" counts as an error of distance 1 when allowing transpositions, but distance 2 otherwise. | |
RequireFirstCharacterMatch | 4 | Requires that the first character of each word is the same. | |
RequireDigitMatches | 8 | Requires that any digits in the compared strings are matched exactly. |