Gets the word at a given position in the string.
'Declaration
Public Shared Function GetWordAt( _
ByVal As System.String, _
ByVal As System.Integer, _
ByVal As IgnoreOptions _
) As CharRange
public static CharRange GetWordAt(
System.string ,
System.int ,
IgnoreOptions
)
Parameters
- text
- String that contains the text.
- pos
- Position where to look for a word.
- ignore
- IgnoreOptions that determines words to ignore.
Return Value
A
CharRange object that contains the word at the specified position in the string, or null if there are no more words at the specified position.