We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
问题描述:ACProFilter类敏感词屏蔽功能BUG。 测试用例: @test public void ACPro() { List sensitiveList = Arrays.asList("白痴", "白痴吗你是"); ACProFilter acProFilter=new ACProFilter(); acProFilter.loadWord(sensitiveList); System.out.println(acProFilter.filter("白痴吗你是白痴")); } 测试结果:*****白痴 后面的白痴没有被屏蔽掉。
The text was updated successfully, but these errors were encountered:
#173 已提交pr
Sorry, something went wrong.
No branches or pull requests
问题描述:ACProFilter类敏感词屏蔽功能BUG。
测试用例:
@test
public void ACPro()
{
List sensitiveList = Arrays.asList("白痴", "白痴吗你是");
ACProFilter acProFilter=new ACProFilter();
acProFilter.loadWord(sensitiveList);
System.out.println(acProFilter.filter("白痴吗你是白痴"));
}
测试结果:*****白痴
后面的白痴没有被屏蔽掉。
The text was updated successfully, but these errors were encountered: