vote up 0 vote down star

Hi, everyone, i've got below function to return true if input is badword

public bool isAdultKeyword(string input)
{
    if (input == null || input.Length == 0)
    {
        return false;
    }
    else
    {
        Regex regex = new Regex(@"\b(badword1|badword2|anotherbadword)\b");
        return regex.IsMatch(input);
    }
}

above function only matched to whole string i.e if input badword it wont match but it will when input is bawrod1.

what im trying to do it is get match when part of input contains one of the badwords

flag

3 Answers

vote up 2 vote down

So under your logic, would you match as to ass?

Also, remember the classic place Scunthorpe - your adult filter needs to be able to allow this word through.

link|flag
Good one "Scunthorpe" do you live there or why did you know that city town? :P – Petoj Feb 11 at 9:58
inputs will be subdomain names (single words), i assumed "as" wouldnt match as because badword list wont have "as" but "ass" – nLL Feb 11 at 10:14
@Petoj - en.wikipedia.org/wiki/Scunthorpe_Problem – Alan Moore Feb 11 at 15:52
vote up 1 vote down

You probably don't have to do it in such a complex way but you can try to implement Knuth-Morris-Pratt. I had tried using it in one of my failed(totally my fault) OCR enhancer modules.

link|flag
vote up 0 vote down

Is \b the word boundary in a regular expression?

In that case your regular expression is only looking for entire words. Removing these will match any occurances of the badwords including where it has been included as part of a larger word.

Regex regex = new Regex(@"(bad|awful|worse)", RegexOptions.IgnoreCase);
link|flag

Your Answer

Get an OpenID
or

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