String.Chars[Int32] Eigenschaft

Definition

Ruft das Char-Objekt an einer angegebenen Zeichenposition innerhalb des aktuellen String-Objekts ab.

public:
 property char default[int] { char get(int index); };
public char this[int index] { get; }
member this.Chars(int) : char
Default Public ReadOnly Property Chars(index As Integer) As Char

Parameter

index
Int32

Eine Position in der aktuellen Zeichenfolge.

Eigenschaftswert

Char

Das Objekt an der index-Position.

Ausnahmen

index ist größer oder gleich der Länge dieses Objekts oder kleiner als 0 (null).

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie Sie diesen Indexer in einer Routine verwenden können, um eine Zeichenfolge zu überprüfen.

Console::Write( "Type a string : " );
String^ myString = Console::ReadLine();
for ( int i = 0; i < myString->Length; i++ )
   if ( Uri::IsHexDigit( myString[ i ] ) )
            Console::WriteLine( "{0} is a hexadecimal digit.", myString[ i ] );
   else
            Console::WriteLine( "{0} is not a hexadecimal digit.", myString[ i ] );
// The example produces output like the following:
//    Type a string : 3f5EaZ
//    3 is a hexadecimal digit.
//    f is a hexadecimal digit.
//    5 is a hexadecimal digit.
//    E is a hexadecimal digit.
//    a is a hexadecimal digit.
//    Z is not a hexadecimal digit.
Console.Write("Type a string : ");
string myString = Console.ReadLine();
for (int i = 0; i < myString.Length; i ++)
   if(Uri.IsHexDigit(myString[i]))
      Console.WriteLine("{0} is a hexadecimal digit.", myString[i]);
   else
      Console.WriteLine("{0} is not a hexadecimal digit.", myString[i]);
// The example produces output like the following:
//    Type a string : 3f5EaZ
//    3 is a hexadecimal digit.
//    f is a hexadecimal digit.
//    5 is a hexadecimal digit.
//    E is a hexadecimal digit.
//    a is a hexadecimal digit.
//    Z is not a hexadecimal digit.
Console.Write("Type a string : ")
Dim myString As String = Console.ReadLine()
Dim i As Integer
For i = 0 To myString.Length - 1
   If Uri.IsHexDigit(myString.Chars(i)) Then
      Console.WriteLine("{0} is a hexadecimal digit.", myString.Chars(i))
   Else
      Console.WriteLine("{0} is not a hexadecimal digit.", myString.Chars(i))
   End If 
Next
' The example produces output like the following:
'    Type a string : 3f5EaZ
'    3 is a hexadecimal digit.
'    f is a hexadecimal digit.
'    5 is a hexadecimal digit.
'    E is a hexadecimal digit.
'    a is a hexadecimal digit.
'    Z is not a hexadecimal digit.

Hinweise

Der index Parameter ist nullbasiert.

Diese Eigenschaft gibt das Char -Objekt an der durch den -Parameter angegebenen Position index zurück. Ein Unicode-Zeichen kann jedoch durch mehrere dargestellt Char werden. Verwenden Sie die System.Globalization.StringInfo -Klasse, um anstelle von -Objekten mit Unicode-Zeichen zu Char arbeiten. Weitere Informationen finden Sie im Abschnitt "Char Objects and Unicode Characters" (Char-Objekte und Unicode-Zeichen) in der String Klassenübersicht.

In C# ist die Chars[] -Eigenschaft ein Indexer. In Visual Basic ist dies die Standardeigenschaft der String -Klasse. Auf jedes Char Objekt in der Zeichenfolge kann mithilfe von Code wie dem folgenden zugegriffen werden.

string str1 = "Test";
for (int ctr = 0; ctr <= str1.Length - 1; ctr++ )
   Console.Write("{0} ", str1[ctr]);
// The example displays the following output:
//      T e s t
Dim str1 As String = "Test"
For ctr As Integer = 0 to str1.Length - 1
   Console.Write("{0} ", str1(ctr))
Next   
' The example displays the following output:
'      T e s t

Gilt für

Siehe auch