PHP RegExp for nested Div tags

前端 未结 4 1631
心在旅途
心在旅途 2021-01-01 07:52

I need a regexp I can use with PHP\'s preg_match_all() to match out content inside div-tags. The divs look like this:

Content
4条回答
  •  不知归路
    2021-01-01 08:00

    As I recently found out, regex can't do that.

    Matching pair tag with regex

    I ended up using xpath, and it works like a charm

提交回复
热议问题