日期:2014-05-17 浏览次数:21108 次
// 只支持*和?通配,不区分大小写。 static bool Like(string str, string pattern) { pattern = "^" + Regex.Escape(pattern).Replace("\\*", ".*").Replace("\\?", ".") + "$"; return Regex.IsMatch(str, pattern, RegexOptions.IgnoreCase); }