I have the following XML
<CATALOG>
<PLANT>Bloodroot</PLANT>
<PLANT>Columbine</PLANT>
<PLANT>Marsh Marigold</PLANT>
<PLANT>Cowslip</PLANT>
</CATALOG>
and try to filter the first two but including the parent CATALOG
using XPATH
<CATALOG>
<PLANT>Bloodroot</PLANT>
<PLANT>Columbine</PLANT>
</CATALOG>
This
/CATALOG/PLANT[position() <=2]
extract the plants without the catalog, but how do I say: add the enclosing CATALOG?