Jump to content

Help me regarding preg_replace


jhbalaji

Recommended Posts

Hello everyone i am writing a snippet for replacing the keywords into links.

It almost works but it also replaces the words in between HTML Tags

So can anyone help me in fixing that

 

<?php
$textlinksname = 'Google';
$textlinksurl = 'http://google.com';
$body = 'Google is a great search engine. Here is the logo of it <img src =\'http://www.google.co.in/google/images/srpr/logo1w.png\'/>';

$replace = "<a href='".$textlinksurl."' target='_blank'>".$textlinksname."</a>";
$body = preg_replace('~(?<!http://|www\.|/)'.$textlinksname.'~i', $replace,$body,200);

echo $body;
?>

 

 

It outputs as

<a href='http://google.com' target='_blank'>Google</a> is a great search engine. Here is the logo of it
<img src ='http://www.google.co.in/google/intl/en_com/images/srpr/google-123-<a href='http://google.com' target='_blank'>Google</a>.png'/>

 

But i need output like this such that it wont mess with HTML Tags

 

<a href='http://google.com' target='_blank'>Google</a> is a great search engine. Here is the logo of it
<img src ='http://www.google.co.in/google/intl/en_com/images/srpr/google-123-Google.png'/>

 

 

Can anyone help me on how to prevent that???

 

Thanks in advance :)

 

Link to comment
Share on other sites

Your regular expression should be more specific about what (where) it will match so that if the URL appears within an anchor tag, the match is not successful.  This sub-forum has lots of threads trying to do precisely that.

Link to comment
Share on other sites

In simple words

It should replace the keyword i specified into links but whenever it founds HTML Tags say Anchor Tag or Image Tag it should skip the Word in between those tags

 

can also be defined as

i need a regex pattern in which it should turn the keywords into links in a Paragraph without messing inbetween HTML Tgas :)

 

Thanks for your Help salathe

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.