String.Remove Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Geçerli dizeden belirtilen sayıda karakterin silindiği yeni bir dize döndürür.
Aşırı Yüklemeler
Remove(Int32) |
Belirtilen konumdan başlayıp son konumdan devam ederek geçerli örnekteki tüm karakterlerin silindiği yeni bir dize döndürür. |
Remove(Int32, Int32) |
Geçerli örnekte belirtilen konumdan başlayarak belirtilen sayıda karakterin silindiği yeni bir dize döndürür. |
Remove(Int32)
- Kaynak:
- String.Manipulation.cs
- Kaynak:
- String.Manipulation.cs
- Kaynak:
- String.Manipulation.cs
Belirtilen konumdan başlayıp son konumdan devam ederek geçerli örnekteki tüm karakterlerin silindiği yeni bir dize döndürür.
public:
System::String ^ Remove(int startIndex);
public string Remove (int startIndex);
member this.Remove : int -> string
Public Function Remove (startIndex As Integer) As String
Parametreler
- startIndex
- Int32
Karakterleri silmeye başlamak için sıfır tabanlı konum.
Döndürülenler
Kaldırılan karakterler dışında bu dizeye eşdeğer yeni bir dize.
Özel durumlar
startIndex
, sıfırdan küçüktür.
-veya-
startIndex
bu dize içinde olmayan bir konum belirtir.
Örnekler
Aşağıdaki örnekte yöntemi gösterilmektedir Remove . Sonraki son durum, belirtilen dizinden başlayarak dizenin sonuna kadar olan tüm metni kaldırır. Son durum, belirtilen dizinden başlayarak üç karakteri kaldırır.
// This example demonstrates the String.Remove() method.
using namespace System;
int main()
{
String^ s = "abc---def";
//
Console::WriteLine( "Index: 012345678" );
Console::WriteLine( "1) {0}", s );
Console::WriteLine( "2) {0}", s->Remove( 3 ) );
Console::WriteLine( "3) {0}", s->Remove( 3, 3 ) );
}
/*
This example produces the following results:
Index: 012345678
1) abc---def
2) abc
3) abcdef
*/
// This example demonstrates the String.Remove() method.
using System;
class Sample
{
public static void Main()
{
string s = "abc---def";
Console.WriteLine("Index: 012345678");
Console.WriteLine("1) {0}", s);
Console.WriteLine("2) {0}", s.Remove(3));
Console.WriteLine("3) {0}", s.Remove(3, 3));
}
}
/*
This example produces the following results:
Index: 012345678
1) abc---def
2) abc
3) abcdef
*/
// This example demonstrates the String.Remove() method.
let s = "abc---def"
printfn "Index: 012345678"
printfn $"1) {s}"
printfn $"2) {s.Remove 3}"
printfn $"3) {s.Remove(3, 3)}"
(*
This example produces the following results:
Index: 012345678
1) abc---def
2) abc
3) abcdef
*)
' This example demonstrates the String.Remove() method.
Class Sample
Public Shared Sub Main()
Dim s As String = "abc---def"
'
Console.WriteLine("Index: 012345678")
Console.WriteLine("1) {0}", s)
Console.WriteLine("2) {0}", s.Remove(3))
Console.WriteLine("3) {0}", s.Remove(3, 3))
End Sub
End Class
'
'This example produces the following results:
'
'Index: 012345678
'1) abc---def
'2) abc
'3) abcdef
'
Açıklamalar
.NET Framework dizeler sıfır tabanlıdır. parametresinin değeri, dize örneğinin startIndex
uzunluğundan sıfırdan bire kadar olabilir.
Not
Bu yöntem, geçerli örneğin değerini değiştirmez. Bunun yerine, özgün dizenin konumundan startIndex
sonuna kadar olan tüm karakterlerin kaldırıldığı yeni bir dize döndürür.
Ayrıca bkz.
- Int32
- Concat(Object)
- Insert(Int32, String)
- Join(String, String[])
- Replace(Char, Char)
- Split(Char[])
- Substring(Int32)
- Trim(Char[])
Şunlara uygulanır
Remove(Int32, Int32)
- Kaynak:
- String.Manipulation.cs
- Kaynak:
- String.Manipulation.cs
- Kaynak:
- String.Manipulation.cs
Geçerli örnekte belirtilen konumdan başlayarak belirtilen sayıda karakterin silindiği yeni bir dize döndürür.
public:
System::String ^ Remove(int startIndex, int count);
public string Remove (int startIndex, int count);
member this.Remove : int * int -> string
Public Function Remove (startIndex As Integer, count As Integer) As String
Parametreler
- startIndex
- Int32
Karakterleri silmeye başlamak için sıfır tabanlı konum.
- count
- Int32
Silinecek karakter sayısı.
Döndürülenler
Kaldırılan karakterler dışında bu örneğe eşdeğer yeni bir dize.
Özel durumlar
veya startIndex
count
sıfırdan küçüktür.
-veya-
startIndex
artı count
olarak bu örneğin dışında bir konum belirtin.
Örnekler
Aşağıdaki örnekte ikinci adı tam bir addan nasıl kaldırabileceğiniz gösterilmektedir.
using namespace System;
int main()
{
String^ name = "Michelle Violet Banks";
Console::WriteLine( "The entire name is '{0}'", name );
// remove the middle name, identified by finding the spaces in the middle of the name->->.
int foundS1 = name->IndexOf( " " );
int foundS2 = name->IndexOf( " ", foundS1 + 1 );
if ( foundS1 != foundS2 && foundS1 >= 0 )
{
name = name->Remove( foundS1 + 1, foundS2 - foundS1 );
Console::WriteLine( "After removing the middle name, we are left with '{0}'", name );
}
}
// The example displays the following output:
// The entire name is 'Michelle Violet Banks'
// After removing the middle name, we are left with 'Michelle Banks'
using System;
public class RemoveTest
{
public static void Main()
{
string name = "Michelle Violet Banks";
Console.WriteLine("The entire name is '{0}'", name);
// Remove the middle name, identified by finding the spaces in the name.
int foundS1 = name.IndexOf(" ");
int foundS2 = name.IndexOf(" ", foundS1 + 1);
if (foundS1 != foundS2 && foundS1 >= 0)
{
name = name.Remove(foundS1 + 1, foundS2 - foundS1);
Console.WriteLine("After removing the middle name, we are left with '{0}'", name);
}
}
}
// The example displays the following output:
// The entire name is 'Michelle Violet Banks'
// After removing the middle name, we are left with 'Michelle Banks'
let name = "Michelle Violet Banks"
printfn $"The entire name is '{name}'"
// Remove the middle name, identified by finding the spaces in the name.
let foundS1 = name.IndexOf " "
let foundS2 = name.IndexOf(" ", foundS1 + 1)
if foundS1 <> foundS2 && foundS1 >= 0 then
let name = name.Remove(foundS1 + 1, foundS2 - foundS1)
printfn $"After removing the middle name, we are left with '{name}'"
// The example displays the following output:
// The entire name is 'Michelle Violet Banks'
// After removing the middle name, we are left with 'Michelle Banks'
Public Class RemoveTest
Public Shared Sub Main()
Dim name As String = "Michelle Violet Banks"
Console.WriteLine("The entire name is '{0}'", name)
Dim foundS1 As Integer = name.IndexOf(" ")
Dim foundS2 As Integer = name.IndexOf(" ", foundS1 + 1)
If foundS1 <> foundS2 And foundS1 >= 0 Then
' remove the middle name, identified by finding the spaces in the middle of the name...
name = name.Remove(foundS1 + 1, foundS2 - foundS1)
Console.WriteLine("After removing the middle name, we are left with '{0}'", name)
End If
End Sub
End Class
' The example displays the following output:
' The entire name is 'Michelle Violet Banks'
' After removing the middle name, we are left with 'Michelle Banks'
Açıklamalar
.NET Framework dizeler sıfır tabanlıdır. parametresinin değeri, dize örneğinin startIndex
uzunluğundan sıfırdan bire kadar olabilir.
Not
Bu yöntem, geçerli örneğin değerini değiştirmez. Bunun yerine, parametresi tarafından count
belirtilen karakter sayısının kaldırıldığı yeni bir dize döndürür. Karakterler tarafından startIndex
belirtilen konumda kaldırılır.
Ayrıca bkz.
- Int32
- Concat(Object)
- Insert(Int32, String)
- Join(String, String[])
- Replace(Char, Char)
- Split(Char[])
- Substring(Int32)
- Trim(Char[])