foreach (var item in listWord)
{ if (Regex.IsMatch(item, StrKeyWord, RegexOptions.IgnoreCase) || Regex.IsMatch(item, StrRegex)) return false; }return true;
}本文共 637 字,大约阅读时间需要 2 分钟。
foreach (var item in listWord)
{ if (Regex.IsMatch(item, StrKeyWord, RegexOptions.IgnoreCase) || Regex.IsMatch(item, StrRegex)) return false; }return true;
}转载于:https://www.cnblogs.com/zhangzhixiong/p/11527786.html