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 ...
8
votes
4answers
197 views
Regular expression preg_quote symbols are not detected
I have a dictionary of swear words in the database, and the following works great
preg_match_all("/\b".$f."(?:ing|er|es|s)?\b/si",$t,$m,PREG_SET_ORDER);
$t is the input text and simply, $f = ...
2
votes
4answers
519 views
Basic Profanity Filter in Objective C for iPhone
How have you like minded individuals tackled the basic challenge of filtering profanity, obviously one can't possibly tackle every scenario but it would be nice to have one at the most basic level as ...
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
3answers
161 views
Profanity Filter using a Regular Expression (list of 100 words)
What is the correct way to strip profane words from a string given:
1) I have a list of 100 words to look for in an array of strings.
2) What is the correct way to handle partial words? How do most ...