Separators in multi-list in XSLT Mar 7, 2019 • sven Quick note: if inside an XSLT for-each loop and I need a separator, the following should be fine: <xsl:if test="position() != 1">; </xsl:if> {...content...} This will add the separator as a prefix before all but the first element.