Jump to content

preg_replace problem


blic

Recommended Posts

Hello everybody!

 

i'm trying to use preg_replace to find some piece of strings in a bigger string and highlight it, but for some it's not working. So here is what's going on:

 

$str1 = abc aei abc qwerty

$str2 = abcd/acb/acd_123/aac99/qwe.xc

$bigtext =  lalalalala abc aos abc qwerty lalala abcd/acb/acd_123/aac99/qwe.xc

$replace = '<SPAN style="COLOR: red; font-weight: bold">\1</SPAN>';

$replacement1 = preg_replace( "/($str1)/" ,$replace, $bigtext);

$replacement2 = preg_replace( "/($str2)/" ,$replace, $bigtext);

 

So it happens to work for replacement1 but not replacement2.

 

I have also tried

$str2 =  preg_quote($str2)

but it still doesnt work.

 

Would anyone know how this could be fixed?

 

Thanks!!

 

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.