Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Behavior to use while splitting words in string differencing.
Namespace: Microsoft.VisualStudio.Text.Differencing
Assembly: Microsoft.VisualStudio.Text.Data (in Microsoft.VisualStudio.Text.Data.dll)
Syntax
'Declaration
Public Enumeration WordSplitBehavior
public enum WordSplitBehavior
public enum class WordSplitBehavior
type WordSplitBehavior
public enum WordSplitBehavior
Members
| Member name | Description | |
|---|---|---|
| CharacterClass | Split words by character class. | |
| Default | Split words by CharacterClass. | |
| LanguageAppropriate | ||
| WhiteSpace | Split the text into words by whitespace only. | |
| WhiteSpaceAndPunctuation | Split the text into words by whitespace and punctuation/symbols. |
Remarks
Word split logic uses the following character classes: 1) whitespace and control characters, 2) numbers/digits, 3) punctuation/symbols, 4) letters.