Strings.GetChar(String, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回 Char
值,表示提供的字串內指定之索引的字元。
public:
static char GetChar(System::String ^ str, int Index);
public static char GetChar (string str, int Index);
static member GetChar : string * int -> char
Public Function GetChar (str As String, Index As Integer) As Char
參數
- str
- String
必要。 任何有效的 String
運算式。
- Index
- Int32
必要。 Integer
運算式。 所要傳回之 str
中的字元 (以 1 起始) 索引。
傳回
Char
值,表示提供的字串內指定之索引的字元。
例外狀況
str
是 Nothing
、Index
< 1,或 Index
大於 str
之最後一個字元的索引。
範例
此範例示範如何使用 GetChar
函式,從中的指定索引傳 String
回字元。
Dim testString As String = "ABCDE"
Dim testChar As Char
' Returns "D"
testChar = GetChar(testString, 4)
備註
如果 Index
小於 1 或大於 中 str
最後一個字元的索引, ArgumentException
則會擲回 。