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

相关内容

热门资讯

美媒:以色列在伊拉克沙漠秘密建... 据《华尔街日报》5月9日报道,知情人士透露,以色列在伊拉克沙漠地带建立了一个秘密军事据点,以支持其针...
特朗普:预计“很快”收到伊朗对... △美国总统特朗(资料图)当地时间5月9日,央视记者获悉,美国总统特朗普表示,他预计“很快”会收到伊朗...
伊朗拟对霍尔木兹海峡的海底电缆... 据伊朗法尔斯通讯社5月9日报道,伊朗为途经霍尔木兹海峡、承担互联网通信业务的海底光缆,提出了一套管理...
美国一客机起飞过程中撞上行人,... △资料图当地时间5月9日,央视记者获悉,一架从丹佛国际机场飞往洛杉矶的航班在起飞过程中撞上一名闯入跑...
凤凰女记者战地日记丨这哪里还算... 【编者按】这是凤凰卫视驻伊朗记者李睿的战地日记。她身处德黑兰,既是战争的亲历者,也是观察者。在她的日...
中国发布禁令,禁止美国制裁中国... 2026年4月24日美国发布公告,把中国5家石化企业列入制裁名单,理由是参与或协助伊朗的石油交易,引...
电力系统母线安全保护领域取得关... (来源:中国电力新闻网) 转自:中国电力新闻网 近日,山西铝业自主研发的《弧光保护系统安装优化方法、...
第三届“探索雅安·阅见美好”阅... 近日,由雅安市图书馆主办的第三届“探索雅安·阅见美好”阅读打卡活动在市区三雅园及雅安市图书馆开展。 ...
实验型真空冷冻干燥机选型指南:... 导语:实验型真空冷冻干燥机作为科研、高校及企业研发环节的关键设备,其性能稳定性直接影响物料干燥效率与...
丁薛祥调研华为芯片基础技术研究... 5月8日晚,中央电视台《新闻联播》播出了一则重量级画面:中共中央政治局常委、国务院副总理丁薛祥到访华...