0
我想用「string [1]」替換「Test.png」...例子「Test.png」=>「Fail.png」...用XSL替換img src標記中的圖像名稱
如何在XSL中做到這一點?
<xsl:when test="string[1] = 'Fail'">
<td> <a href="http://www.google.com/"><img src="Test.png" height="182" width="182"></img></a></td>
</xsl:when>
<xsl:otherwise>
<td> </td>
</xsl:otherwise>
</xsl:choose>
謝謝, MUTHU Selvan SR