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 Replace()用法及代码示例
- C# String ToLower()用法及代码示例
- C# String ToString()用法及代码示例
- C# String Contains()用法及代码示例
- C# String ToCharArray()用法及代码示例
- C# String IndexOf()用法及代码示例
- C# String TrimEnd()用法及代码示例
- C# String IsNormalized()用法及代码示例
- C# String Concat()用法及代码示例
- C# String GetTypeCode()用法及代码示例
- C# String Equals()用法及代码示例
- C# String Split()用法及代码示例
- C# String SubString()用法及代码示例
- C# String Normalize()用法及代码示例
- C# String Compare()用法及代码示例
- C# String LastIndexOfAny()用法及代码示例
- C# String EndsWith()用法及代码示例
- C# String Trim()用法及代码示例
- C# String Copy()用法及代码示例
- C# String Join()用法及代码示例
注:本文由纯净天空筛选整理自 C# String Remove()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。