拆分字符串并获取特定元素

时间:2012-09-27 19:10:57

标签: c#

在VBA中,split函数可用于分割字符串并使用

在一行中获取特定元素
'Get 4th element of split directly
spElement = Split(someString,",")(3)

在C#中是否有类似的方法?我已经看过像这样使用LINQ Last()的例子

spElement = someString.Split(',').Last();

但是有可能用数字来获得split数组的实际元素吗?

1 个答案:

答案 0 :(得分:3)

使用c#

中的[]在数组中获得特定位置
spElement = someString.Split(',')[3];

有关详情,请查看MSDN上的Arrays Tutorial