package co.hp.yjl.glq;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
/**
* 敏感词过滤程序
* 算命、算卦、神仙、保佑、
* 玉皇大帝、王母、鬼怪、精灵、如来、
* 佛祖、财神、灶神、门神、大仙、魔鬼、
* 地狱
*/
public class WordFilter {
public static void main(String[] args) {
System.out.println("输入你要留的言:");
String s = new Scanner(System.in).next();
String[] sens = new String[]{"算命","算卦","神仙","保佑","鬼怪","大仙"};
for (String word : sens) {
//判断s中有没有敏感词 contains包含
if (s.contains(word)){
//判断敏感词的个数,一个敏感词对应一个*..
int num = word.length();
//替换符
String cont = "*";
for (int j = 0; j < num-1; j++) {
cont += "*";
}
//实现替换
s = s.replace(word,cont);
}
}
System.out.println(s);
}
}
敏感词汇替换**
最新推荐文章于 2024-11-14 09:21:17 发布