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 6557137
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T13:02:08+00:00 2026-05-25T13:02:08+00:00

I am in need of a regular expression that will find, and replace, a

  • 0

I am in need of a regular expression that will find, and replace, a word/phrase in a string only if it’s not in an [url] BBcode.

$string = "Word [url='http://domain.com']Word test[/url]";

The regex should not do anything with “Word test”, only the first occurrence of “Word”.

EDIT: To be more specific, this is an addon for a forum software that monitors the messages for mentions of artists. If one occur, the artist’s name is replaced with an URL to a thread about that artist, unless it’s not already part of an URL (either in the link itself or the desc). After a second thought, it shouldn’t be triggered if it’s used in any tags that isn’t pure markup (b,i,u,color,lists, etc). So an easy way to define what tags can be in to be replaced would be brilliant!

Thanks in advance!

  • 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-25T13:02:09+00:00Added an answer on May 25, 2026 at 1:02 pm
    $inputStr = "Coldplay [URL='localhost/threads/coldplay-paradise.32/']Coldplay - \"Paradise\"[/URL] Coldplay";
    
    function replace( $matches ) {
        if( isset( $matches[2] ) && $matches[2] )
            return "[url='coldplay']".$matches[2]."[/url]";
        return $matches[0];
    }
    
    $regex = '/(\[.*?\].*?\[\/.*?\])?(Coldplay)?(.+?)?/si';
    $outputStr = preg_replace_callback( $regex, 'replace', $inputStr );
    echo $outputStr;
    

    result:

    [url='coldplay']Coldplay[/url][URL='localhost/threads/coldplay-paradise.32/']Coldplay - "Paradise"[/URL] [url='coldplay']Coldplay[/url]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need a regular expression that will find lines with: <cflocation url=index.cfm addtoken=No> but
I need a regular expression that will allow only a to z and 0
I need a regular expression find and replace that I'm a little stuck on.
I need a regular expression that will find anything that looks like an English
I need help with a regular expression that will find matches in the strings
I need a regular expression that will find me the following text: postmaster=infonl@bostik.com info=infonl@bostik.com
I need a regular expression that will match the first letter of a song
I wrote a regular expression in hope that I will be able to replace
Here's a quickie for your RegEx wizards. I need a regular expression that will
I am trying to write a regular expression that will match a string that

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.