我正在创建一个计算字符串中所有出现的笑脸的方法。(我已经创建了另一种查询数据库以获取笑脸字符串的方法。)
我希望这种方法能够检测到:-):-)
两次事件。这是我尝试过的:
public static int Occurrences(string input)
{
int count = 0;
Smileys list = SmileyDAL.GetAll();
foreach (var item in list)
{
count += new Regex(item.Key).Matches(input).Count;
}
return count;
}
但是调用此方法时出现此错误:
解析“;-)”- ) 太多。