以下是我的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~
答案 0 :(得分:0)
在回答您的问题时,如果您要排除其名称属性以'a1'开头的属性元素,只需添加以下模板即可忽略
<xsl:template match="property[not(starts-with(@name, 'a1_'))]" />
请注意此模板是如何立即关闭的,因此是空的。换句话说,它什么都不做。当它匹配name属性不以'a1_'开头的属性元素时,将不输出任何内容。
XSLT处理器将首先匹配最具体的模板,因此优先考虑忽略这些元素。
但是,值得注意的是,您可以稍微简化当前的XSLT。您当前正在传递模式属性,以确定要输出的属性。另一种方法是:
<xsl:template match="property">
<xsl:param name="mode"/>
<xsl:value-of select="@*[name() = $mode]"/>
<xsl:text>|</xsl:text>
</xsl:template>
注意,不需要一次调用 xsl:apply-templates 一个元素,只需在一个语句中选择它们。
<xsl:apply-templates select="property">
<xsl:with-param name="mode" select="'name'"/>
</xsl:apply-templates>
它们将按顺序选择,因此不会成为问题。试试这个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">
<xsl:with-param name="mode" select="'name'"/>
</xsl:apply-templates>
<xsl:text>;</xsl:text>
<xsl:apply-templates select="property">
<xsl:with-param name="mode" select="'value'"/>
</xsl:apply-templates>
<xsl:text>~</xsl:text>
</xsl:template>
<xsl:template match="property[not(starts-with(@name, 'a1_'))]"/>
<xsl:template match="property">
<xsl:param name="mode"/>
<xsl:value-of select="@*[name() = $mode]"/>
<xsl:text>|</xsl:text>
</xsl:template>
</xsl:stylesheet>
应用于XML时,输出以下内容
a1_name1|a1_name2|;apple|SALE|~
答案 1 :(得分:0)
尝试这样的事情:
<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:for-each select="property[starts-with(@name,'a1')]">
<xsl:value-of select="@name"/>
<xsl:if test ="position() != last()">
<xsl:text>|</xsl:text>
</xsl:if>
</xsl:for-each>
<xsl:text>;</xsl:text>
<xsl:for-each select="property[starts-with(@name,'a1')]">
<xsl:value-of select="@value"/>
<xsl:if test ="position() != last()">
<xsl:text>|</xsl:text>
</xsl:if>
</xsl:for-each>
<xsl:text>~</xsl:text>
</xsl:template>
</xsl:stylesheet>
这将产生:
a1_name1|a1_name2;apple|SALE~