Possible Duplicate:
Best methods to parse HTML with PHP

I am putting together a WordPress template for a client that includes a PHP function in it that will preg_match_all a specific html tag as specified by the function.

For example if I pass the function the string "div" it will match all instances of div tags and their contents. The hard part with this is getting it match when there are obviously other tags nested within the div tag.

I have tried to work on this but with little success so there is not much point me putting up the regular expression I have so far.

If anybody is a genius an would be able to help me out I would appreciate it!

link|improve this question

25% accept rate
3  
For the ∞th time, use a parser, not a regexp. – Matt Ball Jul 27 '11 at 19:36
1  
Don't parse HTML with regex. stackoverflow.com/questions/3577641/… – Mat Jul 27 '11 at 19:37
feedback

closed as exact duplicate by gpojd, Matt Ball, hakre, sixlettervariables, Bo Persson Jul 28 '11 at 20:04

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

You don't have to be a genious to realise that regular expressions aren't the right tool for the job.

This is what you need: DOM

link|improve this answer
feedback

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