使用XSLT,我试图去掉特定节点中的所有标记,同时保留这些标记之间的空白。
我得到的XML是这样的:
<text>
<s id="s2"> The patient is a <p id="p22">56-year-old</p> <p id="p28">Caucasian</p> <p id="p30">male</p></s></text>
我想去掉所有<s>并且<p>标签,这样我就可以在<文本>节点。
我尝试了以下模板,它确实成功地删除了所有标签,但它也删除了<p>标记(如果没有其他字符)。例如,我最后会说:"患者是一名56岁的高加索男性"
<xsl:template name="strip-tags">
<xsl:param name="text"/>
<xsl:choose>
<xsl:when test="contains($text, '<')">
<xsl:value-of select="substring-before($text, '<')"/>
<xsl:call-template name="strip-tags">
<xsl:with-param name="text" select="substring-after($text, '>')"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
有什么想法吗?谢谢
保留空白但删除标记的文本内容正是元素节点"字符串值"的定义。所以你可以简单地使用
<xsl:value-of select="$text" />
(假设$text
包含<text>
元素节点)。这也假设您没有
<xsl:strip-space elements="*"/>
在样式表中,因为这将去掉各种</p> <p>
标记对之间的纯空白文本节点。