sensitive-words-recognizer

Crates.iosensitive-words-recognizer
lib.rssensitive-words-recognizer
version0.1.1
sourcesrc
created_at2020-12-25 06:46:20.577716
updated_at2020-12-25 06:54:18.3276
descriptionA sensitive lexicon
homepage
repositoryhttps://github.com/whiteCcinn/sensitive-words-recognizer
max_upload_size
id327095
size13,609
蔡文辉 (whiteCcinn)

documentation

README

sensitive-words-recognizer

This is a sensitive word crate.

The Features:

  • replace_sensitive_word()
fn filter_sensitive_words() {
    let str_vec = vec![
        "花呗信用卡代还OK套现",
        "套花呗分期代付",
        "马上套现信用卡",
        "期货套利",
        "空手套白狼",
        "守信用卡脖子",
        "坚定信心,同舟共济,科学防治,精准施策",
        "D+1还是T+1秒到结算免结算费",
        "Fuck you!",
        "Son of Bitch",
    ];

    println!("replace_sensitive_word......");
    for str in &str_vec {
        let replace_str = replace_sensitive_word(str, &MatchType::MinMatchType, '*');

        println!("{} --> {}", str, replace_str);
    }
}
Commit count: 6

cargo fmt