Table of Contents

Enum LevenshteinOptions

Namespace
Uncreated.Warfare.Util
Assembly
Uncreated.Warfare.dll
[Flags]
public enum LevenshteinOptions

Fields

AutoComplete = 256

A will be treated as a value being searched for by B. Treats extra letters after B as untyped instead of missing (they don't count towards the distance).

IgnoreCase = 1

Ignores the casing of the two strings when comparing characters.

IgnorePunctuation = 10

Ignores any characters that fall under IsPunctuation(char).

IgnoreWhitespace = 6

Ignores any characters that fall under IsWhiteSpace(char).