System.String.Substring 方法 (Int32)
上一篇:System.String.StartsWith(String,Boolean,CultureInfo) 方法
下一篇:System.String.Substring(Int32,Int32) 方法
方法描述
从此实例检索子字符串。 子字符串从指定的字符位置开始。
语法定义(C# System.String.Substring 方法 (Int32) 的用法)
public string Substring( int startIndex )
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
startIndex | System-Int32 | 此实例中子字符串的起始字符位置(从零开始)。 |
返回值 | System.String | 与此实例中在 startIndex 处开头的子字符串等效的一个字符串;如果 startIndex 等于此实例的长度,则为 Empty。 |
提示和注释
索引是从零开始的。
注意
此方法不修改当前实例的值。 而是返回一个从当前字符串中的 startIndex 位置开始的新字符串。
System.String.Substring 方法 (Int32)例子
下面的示例演示如何从字符串中获取子字符串。
using System; public class SubStringTest { public static void Main() { string [] info = {"Name: Felica Walker", "Title: Mz.", "Age: 47", "Location: Paris", "Gender: F"}; int found = 0; Console.WriteLine("The initial values in the array are:"); foreach (string s in info) Console.WriteLine(s); Console.WriteLine("{0}We want to retrieve only the key information. That is:", Environment.NewLine); foreach (string s in info) { found = s.IndexOf(":"); Console.WriteLine(s.Substring(found + 1).Trim()); } } } // The example displays the following output to the console: // The initial values in the array are: // Name: Felica Walker // Title: Mz. // Age: 47 // Location: Paris // Gender: F // // We want to retrieve only the key information. That is: // Felica Walker // Mz. // 47 // Paris // F
异常
异常 | 异常描述 |
---|---|
ArgumentOutOfRangeException | startIndex 小于零或大于此实例的长度。 |
版本信息
.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 系统要求。
上一篇:System.String.StartsWith(String,Boolean,CultureInfo) 方法
下一篇:System.String.Substring(Int32,Int32) 方法