Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i needed to extract certain format links from the html source code....

e.g.

text = <a class='rightnavthumbtext' href='gallery.php?id=11'><b>Recent Work</b>

the script should extract only gallery.php?id=11 and so on

the script should extract all the links from the source code and display using loop

share|improve this question
2  
It has been discussed million times, look at the right bar – zerkms Feb 7 '12 at 21:35
Check this out. It can do exactly what you're looking for: simplehtmldom.sourceforge.net – relentless Feb 7 '12 at 21:40
LOL, why in the world would someone down vote this? It's the correct answer! – relentless Feb 7 '12 at 21:41
possible duplicate of RegEx match open tags except XHTML self-contained tags – Wrikken Feb 7 '12 at 21:41
That's a comment, not an answer. And the "use DOM" meme has been covered significantly more informative in the five thousand duplicates. – mario Feb 7 '12 at 21:43
show 7 more comments

closed as not a real question by zerkms, nickb, Wrikken, mario, jprofitt Feb 7 '12 at 22:22

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

$input = 'Some HTML here';
$regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>(.*)<\/a>";
if (preg_match_all("/$regexp/siU", $input, $matches)) {
  // $matches[2] = array of link addresses
  // $matches[3] = array of link text - including HTML code
}

Source: http://www.the-art-of-web.com/php/parse-links/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.