下面是我的 xml 和 xslt 字符串..
xml='<SampleXML>
<header>
<Id>123</Id>
</header>
<properties>
<property name="a1_name1" value="apple"/>
<property name="a1_name2" value="SALE"/>
<property name="a2_name3" value="20130425"/>
</properties>
</SampleXML>
';
xslt ="<xsl:stylesheet xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" version=\"1.0\">
<xsl:template match=\"SampleXML/header\"/>
<xsl:template match=\"SampleXML/properties\">
<xsl:apply-templates select=\"property[position() = 1]\">
<xsl:with-param name=\"mode\">name</xsl:with-param>
</xsl:apply-templates>;<xsl:apply-templates select=\"property[position() = 1]\">
<xsl:with-param name=\"mode\">value</xsl:with-param>
</xsl:apply-templates>~</xsl:template>
<xsl:template match=\"property\">
<xsl:param name=\"mode\" />
<xsl:if test=\"$mode='name'\">
<xsl:variable name=\"sub\"><xsl:apply-templates select=\"following-sibling::*[1]\"><xsl:with-param name=\"mode\" select=\"$mode\"/></xsl:apply-templates></xsl:variable>
<xsl:value-of select=\"@name\"/>|<xsl:value-of select=\"$sub\"/>
</xsl:if>
<xsl:if test=\"$mode='value'\">
<xsl:variable name=\"sub\"><xsl:apply-templates select=\"following-sibling::*[1]\"><xsl:with-param name=\"mode\" select=\"$mode\"/></xsl:apply-templates></xsl:variable>
<xsl:value-of select=\"@value\"/>|<xsl:value-of select=\"$sub\"/>
</xsl:if>
</xsl:template>
</xsl:stylesheet>";
这给了我一个输出
<?xml version="1.0"?>
a1_name1|a1_name2|a2_name3|;apple|SALE|20130425|~
如何修改 xslt 以仅在输出中查看前缀为“a1”的内容。类似下面的内容..尝试使用模板匹配但没有运气。
<?xml version="1.0"?>
a1_name1|a1_name2;apple|SALE~