'Declaration
Public Shared Function GetNextWord( _ ByVal text As String, _ ByVal start As Integer, _ ByVal ignore As IgnoreOptions, _ ByVal previousWord As String _ ) As CharRange
public static CharRange GetNextWord( string text, int start, IgnoreOptions ignore, string previousWord )
Parameters
- text
- String that contains the text.
- start
- Starting position where to look for a word.
- ignore
- IgnoreOptions that determines words to ignore.
- previousWord
- Previous word (used to detect duplicates).
Return Value
A CharRange object that contains the next word in the string, or null if there are no more words in the string.