I am looping through each element in a list and outputting a certain value:
<xsl:for-each select="properties/property">
<xsl:value-of select="name"/>
</xsl:for-each>
This simply outputs a concatenation of the name
node of property.
I want to add delimiter, such as ;
between each element. How can this be done?
I listed XSLT versions 1.0, 2.0 and 3.0 as functionalities might differ between different versions.