引用命名空间 :
using System.Text.RegularExpressions;
作用:str1 = 查找的字符串
str2=需要查找的字符
Regex.Matches(str1,str2).Count
例:Regex.Matches("aaaacbbbcddd","c").Count
查找字符串个数示例 [可下载]