Jump to content

How to match these up??


Scooby08

Recommended Posts

I'm trying to match up and tell whether an image is linked or just plain text is linked.. Here is what I have that works separately, but I need them to both be unique when searching a match.. Here is what I have..

 

/<a href=\"(.*)\" target=\"_blank\"><img border=\"0\" src=\"(.*)\" \/><\/a>/

 

/<a href=\"(.*)\" target=\"_blank\">(.*)<\/a>/

 

Right now the second one lists the image code rather than just plain text.. How do I remedy this situation??

Link to comment
Share on other sites

Do you need to know what's actually between the link tag or do you just need to know whether it's an image or plain text? If you just need to know what it is, no need for 2 regexes...just do a preg_match looking for <img if a result is returned then assume it's an image. If not, assume it's plain text.

 

if (preg_match("/<a.*><img.*<\/a>/",$string)) {
  echo "image linked <br />";
} else {
  echo "plain text linked <br />";
}

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.