我有大约2000个字符的字符串缓冲区,需要检查缓冲区是否包含特定的字符串。
将针对每个Web请求在ASP.NET 2.0 Web应用程序中进行检查。
有人知道String.Contains方法是否比String.IndexOf方法执行得更好吗?
// 2000 characters in s1, search token in s2
string s1 = "Many characters. The quick brown fox jumps over the lazy dog";
string s2 = "fox";
bool b;
b = s1.Contains(s2);
int i;
i = s1.IndexOf(s2);