我有一个xml文件,其中的场景是这样的
<heading inline='true'>
HELLO
</heading>
<abc>
<p>WORLD</p>
<p>NEW LINE1</p>
<p>NEW LINE2</p>
<p>NEW LINE3</p>
</abc>
我需要输出
HELLO WORLD$TNEW LINE1$TNEW LINE2$TNEW LINE3
使用xslt。
规则是,如果在p标签之前有一个带有内联属性true的标题标签,则需要输出第一个p标签,并且需要输出所有其他p标签,并且需要输出$ T.
我尝试过: -
<xsl:template match="p">
<xsl:choose>
<xsl:when test="preceding::heading[@isInline= 'true'] and not(preceding::p)">
<xsl:text> </xsl:text>
<xsl:when>
<xsl:otherwise>
<xsl:text>$T</xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates/>
</xsl:template>
但是在p之前有许多标题标记,我的代码片段是在p之前的所有标题标记。我想在p之前考虑标题标签只是。 在标签中可以有很多级别的嵌套,我不能使用涉及abc和兄弟的相对xpath
我正在使用xslt 2.0,输出方法是文本
任何输入都会有很大的帮助
答案 0 :(得分:1)
尝试以下样式表:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:strip-space elements="*"/>
<xsl:output method="text"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="p">
<xsl:choose>
<!-- test for the first preceding node named heading, with an inline attribute equal to true -->
<xsl:when test="preceding::*[1][name()='heading'][@inline= 'true']">
<xsl:text> </xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>$T</xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates/>
</xsl:template>
</xsl:stylesheet>