Skip to content

xuqiyong666/sensitive_words

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sensitive_words

检索文章中的敏感词

Install

$ gem install sensitive_words

Test code

# -*- coding: utf-8 -*-

require 'sensitive_words'

#首先载入敏感词文件
SensitiveWords.load_dict("#{__dir__}/dictionary/dict1.txt")
SensitiveWords.load_dict("#{__dir__}/dictionary/dict2.txt") #可以载入多次

article = "暴干jeffrey周永康BLOWJOB哈哈哈"

#找出文章中的所有敏感词
words = SensitiveWords.sensitive_words(article)
puts words.inspect   # => ["暴干", "周永康","BLOWJOB"]

#或者只需要指定数量上限的敏感词
words = SensitiveWords.sensitive_words(article,2)
puts words.inspect   # => ["暴干", "周永康"]

敏感词文件示例

说明: 纯文本,一行一个

周永康
暴干
BLOWJOB
流氓政府

yeah.happy coding:)

Releases

No releases published

Packages

No packages published

Languages