...
Returns a subset of the string, beginning at the zero-based start_index
and consisting of n
characters. If the string contains fewer than n
characters after the specified start_index
, this method will return all characters after the start_index
.
Instr(substring As String) As
...
Integer
Anchor | ||||
---|---|---|---|---|
|
Returns the zero-based index of the first occurence of the substring in the string. If the substring does not occur in the string, this method returns -1.
...