Jump to content

preg_match http problem


greenheart

Recommended Posts

Hello I am using preg_match to find a http address in a string. Here is my code:

 

preg_match_all("#href=\"(http://[^']+)\"#", $string, $matches);          
print_r($matches);	

 

 

Problem is it gives e.g

http://www.example.com/review">

 

followed by images (which are in img tags next to the address in the string)

 

when I want 

 

http://www.example.com/review

 

without the ">. I tried to specify it ends in " but it goes on past the " and onto the next ".

 

Please help me, thank you.

 

 

Link to comment
Share on other sites

You start your href with a double quote and say anything but single quote repeat. Without really looking at the main logic of the regex I would have thought it should be more along the lines of...

 

'#href="(http://[^"]+)#'

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.