System.String.Remove 方法 (Int32)

方法描述

删除此字符串中从指定位置到最后位置的所有字符。

语法定义(C# System.String.Remove 方法 (Int32) 的用法)

public string Remove(
	int startIndex
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
startIndex System-Int32 开始删除字符的从零开始的位置。
返回值 System.String 一个新字符串,除所删除的字符之外,该字符串与此字符串等效。

提示和注释

在 .NET Framework 中,字符串都是从零开始的。 startIndex 参数的值的范围可以从零到字符串实例的长度减一。

注意

此方法不修改当前实例的值。 而是返回一个新字符串,在该字符串中从位置 startIndex 到原始字符串的末尾之间的所有字符都已被移除。

System.String.Remove 方法 (Int32)例子

“最后一个”情况删除从指定索引开始的三个字符。

// 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

*/

异常

异常 异常描述
ArgumentOutOfRangeException
  • startIndex 小于零。
  • startIndex 指定的位置不在此字符串内。

命名空间

namespace: System

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。