I am using opencart V 3.0.3.7
I have a code structure in twig file like
<ul> // this is fixed
<li>
{% if somecondition %}
<ul>
<li> </li>
</ul> // Here <ul> </ul> is added dymanically...so number of <ul> </ul> tags is not fixed.
{% endif %}
</li>
</ul> // this is fixed. want to search this tag in xml
I want to search last in xml file
For first instance, works like
<search index="0"><![CDATA[<ul>]]></search>
How to search LAST ???