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.
<?php
$str= <<<ETO
<p>one
two</p>
<p>three</p>
ETO;
preg_match_all('/<p>(.*?)<\/p>/',$str,$r);
print_r($r);
?>

I am studying preg_match_all. I want get all the p from one article. but my code only get the second p. how to modify so that I can get the first p, either. Thanks.

share|improve this question
You're studying wrongly. – BoltClock Mar 21 '11 at 10:45
@BoltClock, could you teach me more? Thanks. – cj333 Mar 21 '11 at 10:46
3  
It's just that regex is often the wrong tool to use for parsing HTML. – BoltClock Mar 21 '11 at 10:47
4  
look into using a HTML parser: stackoverflow.com/questions/3577641/best-methods-to-parse-html – Unicron Mar 21 '11 at 10:48

2 Answers

up vote 4 down vote accepted

You are missing the /ims flag at the end of your regex. Otherwise . will not match line breaks (as in your first paragraph). Actually /s would suffice, but I'm always using all three for simplicity.

Also, preg_match works for many simple cases. But if you are attempting any more complex extractions, then consider alternating to phpQuery or QueryPath which allow for:

foreach (qp($html)->find("p") as $p)  { print $p->text(); }
share|improve this answer
right, thanks, I ignore it, read the book more... – cj333 Mar 21 '11 at 10:50

(.*?) is not matching newline characters. Try the /s modifier:

<?php
$str= <<<ETO
<p>one 
two</p>
<p>three</p>
ETO;
preg_match_all('/<p>(.*?)<\/p>/s',$str,$r);
print_r($r);
?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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