标签:style blog http ar color sp for on div
无意中发现,正则表达式可以连续选择性匹配多个词,但要求其中的词的连接符必须是|,其他符号均看做是词中的一部分。
string content = Request.Form["content"]; string regex = "杀人|放火|贩毒|卖淫"; if (Regex.IsMatch(content,regex)) { Response.Write("语言中含有敏感词汇"); Response.End(); } else { Response.Write(Request.Form["content"]); }
标签:style blog http ar color sp for on div
原文地址:http://www.cnblogs.com/sysoft/p/4111022.html