April 2002
Intermediate to advanced
688 pages
19h 51m
English
GetChar Function
Microsoft.VisualBasic.Strings
GetChar(str,index)
str (required; String)The string from which to extract a character
index (required; Integer)Position of character (1-based)
A Char containing the character at position
index
Returns the character that is at position
index within a given string
The first character in str is at index 1.
If index exceeds the number of character
positions in str, an error is generated.
The GetChar function is new to VB.NET.