I'm a newbie, and I have an XML data file with Book data. I'm trying to replace a value with a string. Specifically trying to test for "if value is less than 5.00 than replace value with the string "Free". Here is what is not working but I receive no errors.
[code=xml]
<xsl:for-each select="value">
<xsl:if test="value &lt;= 5.00">
<xsl:value-of select="Free" />"
</xsl:if>
</xsl:for-each>
[/code]
[code=xml]
<xsl:for-each select="value">
<xsl:if test="value &lt;= 5.00">
<xsl:value-of select="Free" />"
</xsl:if>
</xsl:for-each>
[/code]
Comment