String.Length-Eigenschaft
Ruft die Anzahl der Zeichen in dieser Instanz ab.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public ReadOnly Property Length As Integer
'Usage
Dim instance As String
Dim value As Integer
value = instance.Length
public int Length { get; }
public:
property int Length {
int get ();
}
/** @property */
public int get_Length ()
public function get Length () : int
Eigenschaftenwert
Die Anzahl der Zeichen in dieser Instanz.
Hinweise
Die Length-Eigenschaft gibt nicht die Anzahl der Unicode-Zeichen, sondern die Anzahl der Char-Objekte in dieser Instanz zurück. Der Grund dafür ist, dass ein Unicode-Zeichen ggf. durch mehrere Char dargestellt werden kann. Verwenden Sie zum Arbeiten mit den einzelnen Unicode-Zeichen anstelle der einzelnen Char die System.Globalization.StringInfo-Klasse.
Beispiel
Im folgenden Codebeispiel wird die Length-Eigenschaft veranschaulicht.
' Sample for String.Length
Imports System
Class Sample
Public Shared Sub Main()
Dim str As String = "abcdefg"
Console.WriteLine("1) The length of '{0}' is {1}", str, str.Length)
Console.WriteLine("2) The length of '{0}' is {1}", "xyz", "xyz".Length)
End Sub 'Main
End Class 'Sample
'
'This example produces the following results:
'1) The length of 'abcdefg' is 7
'2) The length of 'xyz' is 3
'
// Sample for String.Length
using System;
class Sample
{
public static void Main()
{
string str = "abcdefg";
Console.WriteLine("1) The length of '{0}' is {1}", str, str.Length);
Console.WriteLine("2) The length of '{0}' is {1}", "xyz", "xyz".Length);
}
}
/*
This example produces the following results:
1) The length of 'abcdefg' is 7
2) The length of 'xyz' is 3
*/
// Sample for String::Length
using namespace System;
int main()
{
String^ str = "abcdefg";
Console::WriteLine( "1) The length of '{0}' is {1}", str, str->Length );
Console::WriteLine( "2) The length of '{0}' is {1}", "xyz", ((String^)"xyz")->Length );
}
/*
This example produces the following results:
1) The length of 'abcdefg' is 7
2) The length of 'xyz' is 3
*/
// Sample for String.Length
import System.*;
class Sample
{
public static void main(String[] args)
{
String str = "abcdefg";
Console.WriteLine("1) The length of '{0}' is {1}", str,
(Int32)str.get_Length());
Console.WriteLine("2) The length of '{0}' is {1}", "xyz",
(Int32)"xyz".get_Length());
} //main
} //Sample
/*
This example produces the following results:
1) The length of 'abcdefg' is 7
2) The length of 'xyz' is 3
*/
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0