I'd like to ask if it's possible to make condition with XPath which will check if current iteration is last one, or to check current iteration index. That would allow me to skip seperator for last element.
Example:
XML:
- Code: Select all
<elements>
<element>el1</element>
<element>el2</element>
<element>el3</element>
</elements>
Current ...