假设有这样的行:
英格兰 A 队队员:Flintoff
英格兰 A 队队员:Flintoff
英格兰 B 队队员:施特劳斯
英格兰 A 队队员:施特劳斯
印度队队员 A:Sachin Tendulkar
印度队队员 B:Sachin Tendulkar
印度队队员 A:Javagal Srinath
现在我想要的是搜索并返回唯一值计数,例如如果我想搜索英格兰球员的唯一计数,它应该给我 2,如上例所示。
我尝试过的代码,但不起作用:
string searchKeyword = "England";
string fileName = @"C:\Users\karansha\Desktop\search tab.txt";
string[] textLines = File.ReadAllLines(fileName);
List<string> results = new List<string>();
foreach (string line in textLines)
{
if (line.Contains(searchKeyword))
{
results.Add(line);
}
}
List<string> users = new List<string>();
Regex regex = new Regex(@"player:\s*(?<playername>.*?)\s+appGUID");
MatchCollection matches = regex.Matches(searchKeyword);
foreach (Match match in matches)
{
var user = match.Groups["username"].Value;
if (!users.Contains(user)) users.Add(user);
}
int numberOfUsers = users.Count;
Console.WriteLine(numberOfUsers);
// keep screen from going away
// when run from VS.NET
Console.ReadLine();