Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1049081
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:33:33+00:00 2026-05-16T16:33:33+00:00

I am using a very long like query to detect offensive words within my

  • 0

I am using a very long like query to detect offensive words within my users usernames.

I have made a moderator page where the moderator can click a button next to the detected username and it will replace the offending word with *’s. The problem is how can I easily detect which offensive word and where to replace?

I guess I would need to use a regex of some description that functions exactly the same as the LIKE statement. Help in creating such a regex would be greatly appropriated or… if anyone has a better solution.

TIA

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T16:33:33+00:00Added an answer on May 16, 2026 at 4:33 pm

    Something like:

    $bad_list = array('foo','barr','ax'); // list of bad words you want to *
    
    $from = array();
    $to = array();
    
    foreach($bad_list as $s){
        $from[] = '/'.preg_quote($s,'/').'/'; // PHP expects regex in delimiter.
        $to[] = str_repeat('*',strlen($s));
    }
    $str = "afoob";
    $str = preg_replace($from,$to,$str); // $str is now a***b
    

    You might also use str_replace, there is really no need of regex here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very long query. I would like to split it in several
I have a query which is taking a very very long time to execute
I want to store a very long string in database using php. The size
Sometimes our application needs to draw very long strings (e.g. 6,000 chars) using ExtTextOut.
Sorry about the length here. I'm using oscommerce and have a page with all
I'm using Jorn Zaefferer's Autocomplete query plugin, http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ I have options set so it
Ok, here we go... I have a select query accessing a very abstract database.
I'm trying to query an xml column using an IN expression. I have not
I'm executing a MySQL query that takes a very long time to finish (specifically,
In several PHP applications I'm making I need to maintain a very long query

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.