标签: c#
在VBA中,split函数可用于分割字符串并使用
'Get 4th element of split directly spElement = Split(someString,",")(3)
在C#中是否有类似的方法?我已经看过像这样使用LINQ Last()的例子
spElement = someString.Split(',').Last();
但是有可能用数字来获得split数组的实际元素吗?
答案 0 :(得分:3)
使用c#
[]
spElement = someString.Split(',')[3];
有关详情,请查看MSDN上的Arrays Tutorial