Hi there! :D
Guys, I need some help! I have a fully rendered menu (a safe html output)... and I need the number of <li>
ONLY of its first level...
example:
<li><a>first</a></li>
<li><a>first</a></li>
<li>
<a>first</a>
<ul>
<li><a>second</a></li>
<li>
<a>second</a>
<ul>
<li><a>third</a></li>
</ul>
</li>
</ul>
</li>
<li><a>first</a></li>
<li>
<a>first</a>
<ul>
<li><a>second</a></li>
<li><a>second</a></li>
</ul>
</li>
So the result should be 5 items...
note: at this moment, the first level is not wrapped by a <ul>
yet... so this might help a regex... I believe it can be done using a XPath query as well... but :(
If possible I would like to understand the 2 approaches... :D
thanks!!!