当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# String Remove()用法及代码示例


C# Remove() 方法用于在从指定的 beginIndex 到给定长度删除所有字符后获取新字符串。如果未指定长度,则删除 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




相关用法


注:本文由纯净天空筛选整理自 C# String Remove()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。