StringMatchingMode Enumeration

Defines a set of string matching modes.

Definition

Namespace: Gemstone.StringExtensions.StringMatcher
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.166 -- Release Build+d3cb24a90fe44346300dfbb17444d7b350f42d79
public enum StringMatchingMode

Members

Exact0 Exact string matching.
StartsWith1 String starts with matching.
EndsWith2 String ends with matching.
Contains3 String contains matching.
Regex4 Regular expression string matching.

Extension Methods

GetDescription Retrieves the description of the value that this Enum represents extracted from the DescriptionAttribute, or the enumeration name if no description is available.
(Defined by EnumExtensions)
GetFormattedName Retrieves a formatted name of the value that this Enum represents for visual display. Enum string name is converted to a label with spaces before each capital letter, other than the first.
(Defined by EnumExtensions)

See Also