<a>
<xsl:attribute name="href">
<xsl:value-of select="/*/properties/property[@name='report']/@value" />
</xsl:attribute>
</a>
Is there any way to concat another string to
<xsl:value-of select="/*/properties/property[@name='report']/@value" />
I need to pass some text to href attribute in addition to the report property value
concat()
function isn't necessary here. – Rilke