ProfanityDetector icon indicating copy to clipboard operation
ProfanityDetector copied to clipboard

This is a simple library for detecting profanities within a text string.

Results 20 ProfanityDetector issues
Sort by recently updated
recently updated
newest added

These are sexualities, and should not be considered profane

Thanks for your work on the project! It would be great if you could add some notes to the APIs indicating if they are thread-safe or not. For example, should...

In a multi-line textbox entry, words are missed if they are before or after a \r\n or \n. Example: only the first word is censored `var output = profanityFilter.CensorString( "fuk...

ContainsProfanity case insensitivity does not work because RegexOptions.IgnoreCase does not apply when used to create a Regex object. This change fixes it by adding the option to the call to...

I changed the namespace to ProfanityDetector to avoid ambiguity between the ProfanityFilter class and the ProfanityFilter namespace Thank you for this by the way, it is saving me a lot...

Hi folks, I'm building some software which auto-generates random 5 character 'joining' codes for a game, and I'm hoping to use this library to avoid any unfortunate words being generated...

Have a look at the following snippet from [linqpad](http://share.linqpad.net/4ljhpp.linq). Why is profanity detected when the ContainsProfanity returns false? Seems to be a bug. ```csharp var text = "I am swearing...

After downloading the package I was forced to use the package like this: `var filter = new ProfanityFilter.ProfanityFilter();` Expected syntax didn't compile: ``` using NUnit.Framework; using ProfanityFilter; namespace ProfanityPoc {...

When installing `ProfanityDetector` nuget package, the XML comments don't show in intelisense ![image](https://user-images.githubusercontent.com/20887184/69878629-5d338d80-12bd-11ea-9feb-4f2d06d4df72.png) But I see in your sourcecode there's plenty of useful information: ``` /// /// Check whether a...