📜  C#字符串Remove()方法

📅  最后修改于: 2020-10-31 03:48:15             🧑  作者: Mango

C#字符串Remove()

从指定的beginIndex中删除所有字符直到给定长度后,C#Remove()方法用于获取新字符串。如果未指定length,则它将删除beginIndex之后的所有字符。

签名

public string Remove(Int32 beginIndex)
public string Remove(Int32 beginIndex, Int32 length)

参数

index:它是整数类型的参数。

返回

它返回一个字符串。

C#字符串Remove()方法示例

using System; 
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
           string s1 = "Hello C#";
           string s2 = s1.Remove(2);
           Console.WriteLine(s2);
       }  
    }  

输出:

He

C#字符串Remove()方法示例2

using System; 
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
        string s1 = "abcdefghijk";
        string s2 = s1.Remove(4, 5);
        Console.WriteLine(s2);
       }  
    }  

输出:

abcdjk