我想刪除鏈接的結束‘#’符號,當其在超鏈接的末尾來需要刪除「#」符號時,它來得
我輸入的XML是:
<Uri>http://www.tneb.nih.gov/lifeafter#</Uri>
XSL我使用:
<xsl:template match="Uri">
<xref format="html" href="{.}" outputclass="">
<xsl:value-of select="."/>
</xref>
</xsl:template>
輸出我越來越爲:
<xref format="html"
href="http://www.tneb.nih.gov/lifeafter#"
outputclass="">http://www.tneb.nih.gov/lifeafter#</xref>
預期輸出:
<xref format="html"
href="http://www.tneb.nih.gov/lifeafter"
outputclass="">http://www.tneb.nih.gov/lifeafter#</xref>
我需要在「href」屬性的年底將「#」符號。不與內部文本。請建議我爲此編碼。提前致謝。
感謝@Rupesh。它的工作正常 – User501