我有下面的字符串数组,我在foreach
循环中得到它的字符串
string[] words = ...
foreach (String W in words.Skip(1))
{
...
}
我可以跳过第一个值,但如何同时跳过第一个和最后一个值?
这是一个数组右。。。
for (int i = 1; i < words.Length - 1; i++)
{
string W = words[i];
//...
}
使用此
words.Skip(1).Take(words.Length-2)
它是-2,所以你不计算你跳过的一个,加上你想从最后一个跳过的那个
试试这个
foreach (string w in words.Skip(1).Take(words.length-2))
{
...
}
可能最好在这之前进行一些测试,以确保有足够的单词!
int count = 0;
string[] words = { };
foreach (string w in words)
{
if(count == 0 || count == (words.Length - 1)){
continue;
}
//Your code goes here
count++;
}
如果必须使用foreach循环,这应该对您有效。
您可以使用ArraySegment
var clipped = new ArraySegment<String>(words, 1, words.Length-2);
foreach (String W in clipped)
{
...
}