Returns the next 'word' in rawBody, is iterative, so subsequent calls move to consecutive words.
Declaration Syntax
C# | Visual Basic | Visual C++ |
protected override string GetNextWord( string rawBody )
Protected Overrides Function GetNextWord ( _ rawBody As String _ ) As String
protected: virtual String^ GetNextWord( String^ rawBody ) override
Parameters
- rawBody (String)
- The text to pull words from.
Return Value
String, the next word.
Remarks
Also returns whitespace between words and null when the end of the text is reached.