hello all, I have this string
<p/><ul><li>test1<p/></li><li>test2<p/></li></ul><p/>
What i attempt to do is extract all the "p" tag within the "li" tag, but not the "p" tag outside of it.
I'm only able so far to extract all the "li" tags by
\<li\>(.*?)\</li\>
I'm lost at how to extract the "p" tag within it.
Any pointer is greatly appreciated it!!