Tagged Questions

15
votes
10answers
2k views

Profanity Filtering / Profanity Dictionaries / Scunthorpe Problem / Profanity Generation

Here's a clbuttic question. I collect code that attempts to do profanity filtering. I personally like profanity, and whenever possible try to talk everyone out of using profanity filters. The filters ...
10
votes
4answers
1k views

What’s the best profanity filter which supports Java integration?

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 ...
6
votes
3answers
213 views

Design pattern for blocking undesirable content

Last year I was working on a Christmas project which allowed customers to send emails to each other with a 256 character free-text field for their Christmas request. The project worked by searching ...
6
votes
6answers
475 views

What's the best way to parse a string for “bad” words in C#?

I'm thinking of something like: foreach (var word in paragraph.split(' ')) { if (badWordArray.Contains(word) { // do something about it } } but I'm sure there's a better way. Thanks in ...
2
votes
4answers
1k views

Regex - Match ( only ) words with mixed chars

i'm writing my anti spam/badwors filter and i need if is possible, to match (detect) only words formed by mixed characters like: fr1&nd$ and not friends is this possible with regex!? best ...
1
vote
1answer
94 views

String has been split using punctuation as delimiters; how to reassemble and put the punctuation back in?

Im implementing a profanity filter by using a Trie data structure. Every swear word is added to the Trie. When I have a string to remove profanities from, I explode the string by using punctuations ...
1
vote
3answers
163 views

check if value is in array

This is probably v.easy but my php is very rusty. I need to implement a bad word filter...I currently have this: if(!in_array($_POST['Name'],$profanities)) { echo $row['Name']; } ...and an ...