Designates the position of a substring in a list of words.
Constructor | Description |
Full Usage:
SubstringPosition(wordIndex, start, count)
Parameters:
int
-
Index of the word in the word list.
start : int
-
Starting position of the substring in the word.
count : int
-
Number of elements of the substring.
|
|
Instance member | Description |
Full Usage:
this.Count
Returns: int
|
Number of characters of the substring.
|
Full Usage:
this.End
Returns: int
|
Ending position of the substring in the word (next position after the last character of the word).
|
Full Usage:
this.GetCommonSubstring
Parameters:
IList<string>
-
The words that were originally used to build the common substring query.
Returns: string
The common substring that is represented by this instance.
|
Gets the common substring.
|
Full Usage:
this.GetCommonSubstring
Parameters:
IList<IList<'T>>
-
The words that were originally used to build the common substring query. If the original words were strings, please use the non-generic version of this function..
Returns: List<'T>
The common substring that is represented by this instance.
|
Gets the common substring.
|
Full Usage:
this.Start
Returns: int
|
Starting position of the substring in the word.
|
Full Usage:
this.ToString
Returns: string
Modifiers: abstract |
|
Full Usage:
this.WordIndex
Returns: int
|
Number of the word in the list of words.
|