� para[@type="warning"][5] selects the fifth para child of the context node that has a type attribute with value warning
This selects the fifth child element of the context node,if the
context node has an attribute type with value="warning", whereas the XPath expression shown below selects the fifth child element of the context node,if the
child has an attribute type with value="warning".
� para[5][@type="warning"] selects the fifth para child of the context node if that child has a type attribute with value warning
I hope this helps.
Vasudha