摘要: 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;本文来自CS 阅读全文
posted @ 2010-12-09 17:11 小锋神 阅读(6892) 评论(0) 推荐(1) 编辑