Returns a Char value representing the character from the specified index in the supplied string.
Public Shared Function GetChar( _ ByVal Str As String, _ ByVal Index As Integer _ ) As Char
Exception type | Error number | Condition |
---|---|---|
5 | Str is Nothing, Index < 1, or Index is greater than index of last character of Str. |
If Index is less than 1 or greater than the index of the last character in Str, an ArgumentException is thrown.
This example shows how to use the GetChar function to return a character from a specified index in a String.
Dim myString As String = "ABCDE" Dim myChar As Char myChar = GetChar(myString, 4) ' myChar = "D"
Mid Function |