我的问题非常简单,如何在另一个字符串中找到字符串的所有索引?这是我写的代码,但问题是它所做的只是多次返回完全相同的索引。这是:
public static int[] IndicesOf(this string s, string Search, int StartIndex)
{
List<int> indices = new List<int>();
int lastIndex = 0;
lastIndex = s.IndexOf(Search);
while (lastIndex != -1)
{
indices.Add(lastIndex);
lastIndex = s.IndexOf(Search, lastIndex);
}
return indices.ToArray();
}
我不知道这段代码有什么问题。我想我可能需要在下次搜索之前推进索引。
答案 0 :(得分:5)
我猜您应该在第二次s.IndexOf
来电时加1。
那是:
lastIndex = s.IndexOf(Search, lastIndex + 1);