Jump to content

regex for replacing a href into img src


Duncan85

Recommended Posts

This regex seems to be wrong

 

$message = ' <a href="http//anyaddress.com/image.jpg">This is my image</a> and  <a href="http://www.mysite.com">this is my site</a>'; 

$message = preg_replace('~(<a)( href="(?:ht|f)tps?://(?=(??:[^"<>\/]*?)\.)?localhost\.(jpg|jpeg|png|gif)/)(?:[^"]*?)"(?:[^>]*?)\>(?:.*?)</a>)~i', '<img src="$1" alt="" />', $message);

 

localhost is example site,i want to make it for any site

 

Like subject is already saying,i am trying to detect all images and make them visible as images,better to say

 

I try to make this

 

<a href="http//anyaddress.com/image.jpg">This is my image</a>

 

like this

 

<img src="http//anyaddress.com/image.jpg" alt="" />

 

 

 

Link to comment
Share on other sites

As i can't modify the first post anymore,i will show the last version of what i have

 

$message = preg_replace('~<a href="(.*?)(\.(?i)(jpg|jpeg|gif|png|bmp))">(.*?)(\.(?i)(jpg|jpeg|gif|png|bmp))</a>~i', '<img src=\"\\1$2\" alt=\"\" />', $message);

 

Still it doesn't work,can someone tell me,where is the problem

Link to comment
Share on other sites

  • 6 months later...
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.