我正在计算数组中存在多少个字符串-
Tags = "the cat the mat the sat";
string[] words = Tags.Split(' ');
int counter = 0;
foreach (string item in words)
{
if (item != "")
{
counter++;
}
}
但是,我如何修改我的代码以便计算每个字符串的出现次数。所以例如 -
- “该” = 3
- “猫” = 1
- “垫子” = 1
- “星期六” = 1
然后以某种方式存储这些值?