System.String.Remove 方法 (Int32, Int32)

方法描述

从此实例中的指定位置开始删除指定数目的字符。

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

public string Remove(
	int startIndex,
	int count
)

参数/返回值

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

提示和注释

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

注意

此方法不修改当前实例的值。 而是返回一个新字符串,在该字符串中,由 count 参数指定的字符数已被移除。 从 startIndex 指定的位置上移除字符。

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

下面的示例演示如何从完整的姓名中移除中间名。

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 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);
        }
    }
}

异常

异常 异常描述
ArgumentOutOfRangeException
  • startIndex 或 count 小于零。
  • startIndex 加 count 之和指定一个此实例外的位置。

命名空间

namespace: System

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

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.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 系统要求。