[]
Determines if the entire word is contained in the specified string.
public static bool IsWholeWord(string word, string text, int idx)
Public Shared Function IsWholeWord(word As String, text As String, idx As Integer) As Boolean
| Type | Name | Description |
|---|---|---|
| string | word | The specified word |
| string | text | The text to search the word. |
| int | idx | The position of the word to evaluate in text. |
| Type | Description |
|---|---|
| bool | True if the entire word is contained in the specified string; false otherwise. |