Click or drag to resize

MathUtilEditDistanceOptions Enumeration

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Flags for controlling the behavior of the MathUtil.EditDistance method.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
[FlagsAttribute]
public enum EditDistanceOptions
Members
  Member nameValueDescription
None0
IgnorePunctuation1 Excludes characters that return true when calling char.IsPunctuation from the string comparison.
AllowTranspositions2 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.
RequireFirstCharacterMatch4 Requires that the first character of each word is the same.
RequireDigitMatches8 Requires that any digits in the compared strings are matched exactly.
See Also