最近2018中文字幕在日韩欧美国产成人片_国产日韩精品一区二区在线_在线观看成年美女黄网色视频_国产精品一区三区五区_国产精彩刺激乱对白_看黄色黄大色黄片免费_人人超碰自拍cao_国产高清av在线_亚洲精品电影av_日韩美女尤物视频网站

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
C#發(fā)送消息過濾關(guān)鍵字


創(chuàng)新互聯(lián)公司擁有十多年成都網(wǎng)站建設(shè)工作經(jīng)驗(yàn),為各大企業(yè)提供網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站服務(wù),對(duì)于網(wǎng)頁設(shè)計(jì)、PC網(wǎng)站建設(shè)(電腦版網(wǎng)站建設(shè))、app軟件開發(fā)公司、wap網(wǎng)站建設(shè)(手機(jī)版網(wǎng)站建設(shè))、程序開發(fā)、網(wǎng)站優(yōu)化(SEO優(yōu)化)、微網(wǎng)站、域名與空間等,憑借多年來在互聯(lián)網(wǎng)的打拼,我們?cè)诨ヂ?lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)積累了很多網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、網(wǎng)絡(luò)營銷經(jīng)驗(yàn),集策劃、開發(fā)、設(shè)計(jì)、營銷、管理等網(wǎng)站化運(yùn)作于一體,具備承接各種規(guī)模類型的網(wǎng)站建設(shè)項(xiàng)目的能力。

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

    {

        ///

        /// 添加關(guān)鍵字

        ///

        ///

        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個(gè)非法字符.沒有則返回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個(gè)非法字符.沒有則返回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);

        }

    }

}

調(diào)用執(zhí)行方法類:

            #region 過濾關(guān)鍵字

            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 測試運(yùn)行時(shí)間

            //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;//運(yùn)行時(shí)間

            sw2.Stop();

            TimeSpan ts3 = sw2.Elapsed;

            double times = ts3.TotalMilliseconds;

            Console.WriteLine("Stopwatch總共花費(fèi){0}ms.", ts3.TotalMilliseconds); 

            #endregion

            #endregion

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

網(wǎng)站欄目:C#發(fā)送消息過濾關(guān)鍵字
文章來源:http://fisionsoft.com.cn/article/ieoshh.html