C#发送消息过滤关键字
admin
2023-03-16 01:21:16
0


TrieFilter类

using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;


namespace SaaS.Web.Base

{

    public class TrieNode

    {

        public bool m_end;

        public Dictionary m_values;

        public TrieNode()

        {

            m_values = new Dictionary();

        }

    }

    public class TrieFilter : TrieNode

    {

        ///

        /// 添加关键字

        ///

        ///

        public void AddKey(string key)

        {

            if (string.IsNullOrEmpty(key))

            {

                return;

            }

            TrieNode node = this;

            for (int i = 0; i < key.Length; i++)

            {

                char c = key[i];

                TrieNode subnode;

                if (!node.m_values.TryGetValue(c, out subnode))

                {

                    subnode = new TrieNode();

                    node.m_values.Add(c, subnode);

                }

                node = subnode;

            }

            node.m_end = true;

        }


        ///

        /// 检查是否包含非法字符

        ///

        /// 输入文本

        /// 找到的第1个非法字符.没有则返回string.Empty

        public bool HasBadWord(string text)

        {

            for (int i = 0; i < text.Length; i++)

            {

                TrieNode node;

                if (m_values.TryGetValue(text[i], out node))

                {

                    for (int j = i + 1; j < text.Length; j++)

                    {

                        if (node.m_values.TryGetValue(text[j], out node))

                        {

                            if (node.m_end)

                            {

                                return true;

                            }

                        }

                        else

                        {

                            break;

                        }

                    }

                }

            }

            return false;

        }


        ///

        /// 检查是否包含非法字符

        ///

        /// 输入文本

        /// 找到的第1个非法字符.没有则返回string.Empty

        public string FindOne(string text)

        {

            for (int i = 0; i < text.Length; i++)

            {

                char c = text[i];

                TrieNode node;

                if (m_values.TryGetValue(c, out node))

                {

                    for (int j = i + 1; j < text.Length; j++)

                    {

                        if (node.m_values.TryGetValue(text[j], out node))

                        {

                            if (node.m_end)

                            {

                                return text.Substring(i, j + 1 - i);

                            }

                        }

                        else

                        {

                            break;

                        }

                    }

                }

            }

            return string.Empty;

        }


        //查找所有非法字符

        public IEnumerable FindAll(string text)

        {

            for (int i = 0; i < text.Length; i++)

            {

                TrieNode node;

                if (m_values.TryGetValue(text[i], out node))

                {

                    for (int j = i + 1; j < text.Length; j++)

                    {

                        if (node.m_values.TryGetValue(text[j], out node))

                        {

                            if (node.m_end)

                            {

                                yield return text.Substring(i, (j + 1 - i));

                            }

                        }

                        else

                        {

                            break;

                        }

                    }

                }

            }

        }


        ///

        /// 替换非法字符

        ///

        ///

        /// 用于代替非法字符

        /// 替换后的字符串

        public string Replace(string text, char c)

        //public string Replace(string text, char c = '*')

        {

            char[] chars = null;

            for (int i = 0; i < text.Length; i++)

            {

                TrieNode subnode;

                if (m_values.TryGetValue(text[i], out subnode))

                {

                    for (int j = i + 1; j < text.Length; j++)

                    {

                        if (subnode.m_values.TryGetValue(text[j], out subnode))

                        {

                            if (subnode.m_end)

                            {

                                if (chars == null) chars = text.ToArray();

                                for (int t = i; t <= j; t++)

                                {

                                    chars[t] = c;

                                }

                                i = j;

                            }

                        }

                        else

                        {

                            break;

                        }

                    }

                }

            }

            return chars == null ? text : new string(chars);

        }

    }

}



调用执行方法类:

            #region 过滤关键字

            Stopwatch sw2 = new Stopwatch();

            sw2.Start();  

            int time_cap = 2000;

            string urlAddress = HttpContext.Server.MapPath("~/App_Data/KeyWord.txt");

            TrieFilter tf = new TrieFilter();

            using (StreamReader sw = new StreamReader(System.IO.File.OpenRead(urlAddress)))

            {

                string key = sw.ReadLine();

                while (key != null)

                {

                    if (key != string.Empty)

                    {

                        tf.AddKey(key);

                    }

                    key = sw.ReadLine();

                }

            }

            if (!string.IsNullOrEmpty(content))

                content = tf.Replace(content, '*');


            #region 测试运行时间

            //System.Diagnostics.Stopwatch sw1 = new System.Diagnostics.Stopwatch();

            //sw1.Start();

            //System.Threading.Thread.Sleep(time_cap);

            //sw1.Stop();


            //TimeSpan ts2 = sw1.Elapsed;

            //double t = ts2.TotalMilliseconds;//运行时间


            sw2.Stop();

            TimeSpan ts3 = sw2.Elapsed;

            double times = ts3.TotalMilliseconds;

            Console.WriteLine("Stopwatch总共花费{0}ms.", ts3.TotalMilliseconds); 

            #endregion


            #endregion


附件:http://down.51cto.com/data/2367015

相关内容

热门资讯

【今日要闻】“威信茶楼有挂吗?... 【今日要闻】“威信茶楼有挂吗?”(果然有透视挂)您好,威信茶楼这个游戏其实有挂的,确实是有挂的,需要...
最新引进“来来麻将可以开挂吗?... 最新引进“来来麻将可以开挂吗?”(透视曝光猫腻)您好,来来麻将这个游戏其实有挂的,确实是有挂的,需要...
重磅消息“决战恩施麻将有没有挂... 您好:决战恩施麻将这款游戏可以开挂,确实是有挂的,需要了解加客服微信【9784099】很多玩家在这款...
【第一资讯】“钱潮十三水到底有... 有 亲,根据资深记者爆料钱潮十三水是可以开挂的,确实有挂(咨询软件无需打...
终于明白“约约麻将开挂器?”(... 终于明白“约约麻将开挂器?”(太坑了果然有挂)您好,约约麻将这个游戏其实有挂的,确实是有挂的,需要了...
今日重大消息“衣兆丰悦可以开挂... 您好:衣兆丰悦这款游戏可以开挂,确实是有挂的,需要了解加客服微信【4282891】很多玩家在这款游戏...
【第一消息】“乐禧棋牌到底有挂... 【第一消息】“乐禧棋牌到底有挂吗?”(透视曝光猫腻)您好,乐禧棋牌这个游戏其实有挂的,确实是有挂的,...
玩家最新攻略“决战仙桃麻将怎么... 有 亲,根据资深记者爆料决战仙桃麻将是可以开挂的,确实有挂(咨询软件无需...
【第一资讯】“上海滩怎么开挂?... 【第一资讯】“上海滩怎么开挂?”(必胜开挂神器)您好,上海滩这个游戏其实有挂的,确实是有挂的,需要了...
【今日要闻】“德扑之星开挂器?... 有 亲,根据资深记者爆料德扑之星是可以开挂的,确实有挂(咨询软件无需打开...