string类提供了判断字符串B在字符串A中首次(或最后)出现的Index的方法,但有时候需要判断B在A中出现了多少次. 为此想了一个算法. public static void CountIndexOf1(string A, string B,int startindex,ref int count) { int j= A.IndexOf(B,startindex); ) return; count++; CountIndexOf(A, B, j+test.Length,ref count);…