Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 VBA 中,split 函数可用于拆分字符串并使用以下命令在一行中获取特定元素
'Get 4th element of split directly spElement = Split(someString,",")(3)
在 C# 中有类似的方法吗?我见过像这样使用 LINQ Last() 的例子
spElement = someString.Split(',').Last();
但是是否可以按数字获取拆分数组的实际元素?
[]您可以在 c#中使用数组中的特定位置
[]
spElement = someString.Split(',')[3];
有关更多信息,请查看MSDN 上的此数组教程