20100602 学习记录2:String.Split 方法


public string[] Split(
string[] separator,
int count,
StringSplitOptions options
)

参数

separator
类型: System.String []
分隔此字符串中子字符串的字符串数组、不包含分隔符的空数组或 null
count
类型: System.Int32
要返回的子字符串的最大数量。
options
类型: System.StringSplitOptions
要省略返回的数组中的空数组元素,则为 RemoveEmptyEntries;要包含返回的数组中的空数组元素,则为 None

返回值

类型: System.String []
一个数组,其元素包含此字符串中的子字符串,这些子字符串由 separator 中的一个或多个字符串分隔。有关更多信息,请参见“备注”部分。

 

 

 详细解释及例子见:

http://msdn.microsoft.com/zh-cn/library/1bwe3zdy.aspx 

你可能感兴趣的:(String)