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

  • SEARCH
  • Home
  • 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 6351803
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T22:04:44+00:00 2026-05-24T22:04:44+00:00

I have a little problem with my function: function swear_filter($string){ $search = array( ‘bad-word’,

  • 0

I have a little problem with my function:

function swear_filter($string){
    $search = array(
        'bad-word',
    );
    $replace = array(
        '****',
    );
    return preg_replace($search , $replace, $string);
}

It should transform “bad-word” to “**” but the problem is the case sensivity

eg. if the user type “baD-word” it doesn’t work.

  • 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-24T22:04:45+00:00Added an answer on May 24, 2026 at 10:04 pm

    The values in your $search array are not regular expressions.

    First, fix that:

    $search = array(
        '/bad-word/',
    );
    

    Then, you can apply the i flag for case-insensitivity:

    $search = array(
        '/bad-word/i',
    );
    

    You don’t need the g flag to match globally (i.e. more than once each) because preg_replace will handle that for you.

    However, you could probably do with using the word boundary metacharacter \b to avoid matching your “bad-word” string inside another word. This may have consequences on how you form your list of “bad words”.

    $search = array(
        '/\bbad-word\b/i',
    );
    

    Live demo.


    If you don’t want to pollute $search with these implementation details, then you can do the same thing a bit more programmatically:

    $search = array_map(
       create_function('$str', 'return "/\b" . preg_quote($str, "/") . "\b/i";'),
       $search
    );
    

    (I’ve not used the recent PHP lambda syntax because codepad doesn’t support it; look it up if you are interested!)

    Live demo.


    Update Full code:

    function swear_filter($string){
        $search = array(
            'bad-word',
        );
    
        $replace = array(
            '****',
        );
    
        // regex-ise input
        $search = array_map(
           create_function('$str', 'return "/\b" . preg_quote($str, "/") . "\b/i";'),
           $search
        );
    
        return preg_replace($search, $replace, $string);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a little problem with preg_replace . I need a function that removes
I have a little problem with some jquery and http://www.mikage.to/jquery/jquery_history_noc.html The function works great,
I have a little problem, I have an array and I want to add
i have a little problem with the hover function with mousemove. But what is
I have a little problem with Codemirror ( http://codemirror.net/manual.html ) My code: $(document).ready(function ust()
Hallo all. I have a little problem. I have a function. Let’s call it
I have a little problem with the context.fillText() function. When I call a function
I have a little problem with jQuery: $('#form-submit').click(function () { $('#textarea, #name').removeClass('error-state').addClass('normal-state'); var myName
I have got a little problem using the CodeIgniter route function. I use the
I have a little problem with an AJAX function: PAGE A stands for the

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.