码迷,mamicode.com
首页 > 其他好文 > 详细

正则表达式敏感词过滤

时间:2014-11-20 18:27:54      阅读:311      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!