[]
Determines if the entire word is contained in the specified string.
public static bool IsWholeWord(string word, string text, int idx)
| 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. |