C# 非法关键词过滤 ToolGood.Words插件

闻人嘉颖
2023-12-01

VS=>工具=>库程序包管理器=>程序包管理器控制台输入:"Install-Package ToolGood.Words -Version 2.3.3.2"命令如下
PM> Install-Package ToolGood.Words -Version 2.3.3.2

添加引用:ToolGood.Words.dll

using ToolGood.Words;
static void Main(string[] args)
 {
  	Stopwatch watch = new Stopwatch();
            	watch.Start();
                string illegalWords = "你好|xx";//可以从数据库或者txt文本中读取非法关键词(缓存什么也可以加上)
                string content = @"xx的TA做着白日梦,正是盛夏时节,不比初春时的一片新绿,知道好日子才开始,所以明亮快活,眼前的绿是沉甸甸的,或许是因为知道绚烂已到了顶,以后的日子只有每况愈下。一如我此时的心情。已是在古代的第十个日子,可我还是觉得这是一场梦,只等我醒来就仍然有一堆的财务报告等着自己,而不是在康熙四十三年;仍然是芳龄25的单身白领,而不是这个还未满十四岁的满族少女,回想过往看的自己,欣然感动的就流下了眼泪。";

                StringSearch iwords = new StringSearch();
                iwords.SetKeywords(illegalWords.Split('|'));
                var result = iwords.Replace(content, '*');
                watch.Stop();
                Console.WriteLine(result + ",耗时:" + watch.ElapsedMilliseconds + "ms");
                Console.ReadLine();
}

具体使用方法可以参考这篇文章:https://github.com/toolgood/ToolGood.Words

 类似资料: