0
我想運行此XSL:帶HTML和截斷
<!-- This will remove the tag -->
<xsl:template name="remove-html">
<xsl:param name="text"/>
<xsl:choose>
<xsl:when test="contains($text, '<')">
<xsl:value-of select="normalize-space(substring-before($text, '<'))"/>
<xsl:text> </xsl:text>
<xsl:call-template name="remove-html">
<xsl:with-param name="text" select="normalize-space(substring-after($text, '>'))"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="normalize-space($text)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
這
<xsl:choose>
<xsl:when test="string-length(header) > 22">
<xsl:value-of select="substring(header, 0, 22)" />
<xsl:text>…</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="header" />
</xsl:otherwise>
</xsl:choose>
在一起..我該怎麼辦呢?
你的意思是你想要的代碼的頂部位匹配對'body'元素和對'head'元素底位替換
???
? –不,我想運行一個文本通過,並刪除HTML並截斷結果 –
我不評論你的方法是否正確,但這兩個動作的純粹組成可以自然地實現捕獲變量中第一個動作的輸出並將第二個動作應用於該變量。 –