I am new to xslt and I am wondering whether it is possible to compare the value of "@userNameKey" and the value of
<xsl:value-of select="./text()"/>
in example below?
<xsl:if test="@userNameKey='??????'">
<xsl:attribute name="selected">true</xsl:attribute>
</xsl:if>
<xsl:value-of select="./text()"/>
Basically, I just want to replace the questionmarks with the following fragment: <xsl:value-of select="./text()"/>
but there is an issue with the double quotes. Should I use escape characters (if yes, what are they?) or there is a better solution?