标签:指定 new 字符串 通过 sources string appear reg 方法
/// <summary>
/// 取得指定字符串在源字符串中出现的次数
/// </summary>
/// <param name="str"></param>
/// <param name="sourcestr"></param>
/// <returns></returns>
static int GetStrAppearTimes(string str, string sourcestr)
{
Regex regex = new Regex(str, RegexOptions.IgnoreCase);
var mymatch=regex.Matches(sourcestr);
return mymatch.Count;
}
标签:指定 new 字符串 通过 sources string appear reg 方法
原文地址:http://www.cnblogs.com/sulong/p/6049152.html