Tagged Questions
A sacrilegious word, or more generally an offensive word. In the SO context, a word that may be filtered out of forum postings etc.
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 ...
14
votes
6answers
926 views
What’s a good Python profanity filter library?
Like http://stackoverflow.com/questions/1521646/best-profanity-filter, but for Python — and I’m looking for libraries I can run and control myself locally, as opposed to web services.
(And whilst ...
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 ...
9
votes
1answer
328 views
any open-source/free .NET profanity filter for website?
Are you aware of any open-source/free .NET profanity filter (ASP.NET MVC to be precise)? I searched google but I couldn't come up with any. I would like to avoid implementing it entirely on my own, if ...
9
votes
12answers
10k views
“bad words” filter
Not very technical, but... I have to implement a bad words filter in a new site we are developing. So I need a "good" bad words list to feed my db with... any hint / direction? Looking around with ...
8
votes
4answers
196 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 = ...
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 ...
3
votes
2answers
340 views
Regular expression for replacing profanity words in a string
I'm trying to replace a set of words in a text string. Now I have a loop, which does not perform well:
function clearProfanity(s) {
var profanity = ['ass', 'bottom', 'damn', 'shit'];
for (var ...
2
votes
2answers
92 views
How do I prevent users from entering profanities?
I have to take a city name from users as input, but I don't want to accept any profanities. Can anyone tell me how I can keep users from typing such words?
2
votes
2answers
182 views
How can I filter out profanity in base36 IDs?
I want to use base36 in a web application I am developing... but as the id is visible to users as a url, I want to filter out profanity. Has anyone solved this? Or is this even a real problem?
Does ...
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
0answers
49 views
Efficiently Detect Profanity in text message using PHP and MySQL table containing large list of bad words
I have a mysql table containing a big list (around 5000 words) of multilingual bad words. I need to find an efficient way to filter out the profane words in text messages created by users. Using php ...
1
vote
0answers
51 views
word profanity match in php [closed]
Possible Duplicate:
How do you implement a good profanity filter?
i need to build a script that remove bad words from someone post or username or anythong else they submit to my site.
i ...
1
vote
3answers
159 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 ...
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 ...
0
votes
1answer
40 views
Profanity checking for promotional codes
I have a slightly unusual profanity-related question.
Now we're used to dealing with profanity-filtering of user-generated content — any method is imperfect, but products like CleanSpeak and ...
0
votes
1answer
167 views
How to filter bad words of textbox in ASP.NET MVC?
I have a requirement in which i wanna filter the textbox value, that is should remove the bad words entered by the user. Once the user enters the bad words and click on submit button, action is ...
0
votes
1answer
56 views
How can I filter out profanity in numeric IDs?
I want to use numeric IDs in a web application I am developing... However, as the ID is visible to users as a URL, I want to filter out profanity. Things like (I'll leave it to you to figure out what ...
0
votes
1answer
408 views
Spanish profanity black-list
I've been tasked with implementing a blacklist-based profanity filter for a Rails app. I know there are a ton of issues with blacklist-based filtering, but the decision was made above my head. ...