What is the best profanity filter (free / open source or paid commercial) which supports Java integration?

It needs to be able to take a string and return a clean string... Can be a web service and doesn't necessarily have to support Java...

Happy programming...

link|improve this question

46% accept rate
1  
Suddenly the works of Alfred Hitchcock are not suitable for the public. ... Actually, friends of mine can't download Visual Studio because of their names. – Incognito Aug 23 '10 at 16:12
feedback

4 Answers

up vote 4 down vote accepted

Check out this Open Source profanity filter from KickJava.com. It'll replace a bad word with something similar to $%@!

link|improve this answer
3  
Eyeballing the code, it looks like it is an inefficient solution and it suffers from the Scunthorpe problem: see en.wikipedia.org/wiki/Scunthorpe_problem – Stephen C Oct 6 '09 at 4:36
4  
In short, it is $%@! :-) – Stephen C Oct 6 '09 at 4:38
1  
@Stephen C: That Wikipedia article is hilarious. I'll see if I can find another library for him to use, until then if he uses this want I just hope no one from the town of Scunthorpe, North Lincolnshire, England uses his program. ;-) – Lucas McCoy Oct 6 '09 at 4:39
feedback

You can also try Clean Speak by Inversoft.

It has a Java API that you can drop into the classpath of your Java application. It is also one of the best filters on the market and can filter much more than just profanity. It also doesn't suffer from the Scunthorpe problem because it performs contextual analysis as it filters.

link|improve this answer
feedback

how about trying: http://www.webpurify.com

link|improve this answer
feedback

We used http://webpurify.com and it worked great. It was inexpensive and easy to implement.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.