int GetAppearTimes(string str1,string str2){
int i=0;
while(str1.IndexOf(str2)>=0){
str1=str1.Substring(str1.IndexOf(str2)+str2.Length);
i++;
}
return i;
}
int GetAppearTimes(string str1,string str2){
Regex ex=new Regex(str2);
return ex.Matches(str1).Count;
}
Regex.Matches(str1,str2).Count;